Initial Project Boilerplate

This commit is contained in:
YIIP9
2026-04-07 12:41:36 +12:00
parent ffe87dfeb3
commit d230757cf6
56 changed files with 99817 additions and 0 deletions

21
src/app/page.tsx Normal file
View File

@@ -0,0 +1,21 @@
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center px-6 py-16">
<div className="max-w-2xl space-y-8 text-center">
<h1 className="font-heading text-5xl tracking-tight text-white sm:text-6xl">
Folder Game Challenge
</h1>
<div className="space-y-6 text-lg leading-relaxed text-zinc-300 sm:text-xl">
<p>
You have 2 hours to create an interactive game that uses some
education around file management, using / navigating software etc.
</p>
<p>
The goal is the user will progress through levels completing
challenges based in real knowledge learning.
</p>
</div>
</div>
</main>
);
}