Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24 text-text-primary">
Graphics Programming Knights
{/* START OF THE HOME SECTION */}
<section id="home" className="min-h-screen w-full flex flex-col items-center">
{/* Home code goes here */}
<h2>Home</h2>
</section>

{/* START OF THE ABOUT SECTION */}
<section id="about" className="min-h-screen w-full flex flex-col items-center">
{/* About code goes here */}
<h2>About</h2>
</section>

{/* START OF THE CHALLENGES SECTION */}
<section id="challenges" className="min-h-screen w-full flex flex-col items-center">
{/* Challenges code goes here */}
<h2>Challenges</h2>
</section>

{/* START OF THE TEAM SECTION */}
<section id="team" className="min-h-screen w-full flex flex-col items-center">
{/* Team code goes here */}
<h2>Team</h2>
</section>
</main>
);
}
Loading