AlgoGit

Compete with all the serious Gitamites out there

import {  Space_Mono  } from "next/font/google";
import Navbar from "@/components/Navbar"; // 1. Import Navbar
import "./globals.css";

const spaceMono = Space_Mono({
  weight: ["400", "700"],
  style: ["normal", "italic"],
  subsets: ["latin"],
});

export const metadata = {
  title: "algo-git",
  description: "Compete with all the serious Gitamites out there",
};

export default function RootLayout({  children  }) {
  return (
    <html lang="en">
      <body className={spaceMono.className}>
        <Navbar /> {/* 2. Add it here */}
        {children}
      </body>
    </html>
  );
}

AlgoGit is a coding analytics and student ranking platform made specifically for GITAM students.

The name AlgoGit comes from two words: Algorithm and GITAM. It reflects the platform's goal of promoting algorithmic thinking and programming skills within the university community.

The platform tracks students' performance across several coding and development sites, including LeetCode, Codeforces, and GitHub. By gathering data from these sites, AlgoGit provides a combined leaderboard that shows students' coding achievements and technical growth.

AlgoGit is a useful tool for faculty members as well. It helps identify high-performing students for opportunities like internships, hackathons, technical events, and other academic or industry collaborations.

By creating a clear and data-focused environment, AlgoGit promotes healthy competition, ongoing learning, and a stronger coding culture at the university.

Failed to load leaderboard.