basic structure for pages

This commit is contained in:
2025-07-01 14:48:56 +02:00
parent ca378790f1
commit 3185ca3c43
4 changed files with 28 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
export default function Lobby() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1>Lobby</h1>
</main>
);
}
+7
View File
@@ -0,0 +1,7 @@
export default function Nominations() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1>Nominaties</h1>
</main>
);
}
+7
View File
@@ -0,0 +1,7 @@
export default function Pause() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1>Pause</h1>
</main>
);
}
+7
View File
@@ -0,0 +1,7 @@
export default function PostGame() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1>Post-game</h1>
</main>
);
}