Initial Project Boilerplate
This commit is contained in:
21
src/app/page.tsx
Normal file
21
src/app/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user