From 3185ca3c43113c8b6b0620cdedde19f9b59dee95 Mon Sep 17 00:00:00 2001 From: Guus Date: Tue, 1 Jul 2025 14:48:56 +0200 Subject: [PATCH] basic structure for pages --- frontend/src/app/lobby/page.tsx | 7 +++++++ frontend/src/app/nominations/page.tsx | 7 +++++++ frontend/src/app/pause/page.tsx | 7 +++++++ frontend/src/app/post-game/page.tsx | 7 +++++++ 4 files changed, 28 insertions(+) create mode 100644 frontend/src/app/lobby/page.tsx create mode 100644 frontend/src/app/nominations/page.tsx create mode 100644 frontend/src/app/pause/page.tsx create mode 100644 frontend/src/app/post-game/page.tsx diff --git a/frontend/src/app/lobby/page.tsx b/frontend/src/app/lobby/page.tsx new file mode 100644 index 0000000..e3d12a8 --- /dev/null +++ b/frontend/src/app/lobby/page.tsx @@ -0,0 +1,7 @@ +export default function Lobby() { + return ( +
+

Lobby

+
+ ); +} diff --git a/frontend/src/app/nominations/page.tsx b/frontend/src/app/nominations/page.tsx new file mode 100644 index 0000000..ec53f05 --- /dev/null +++ b/frontend/src/app/nominations/page.tsx @@ -0,0 +1,7 @@ +export default function Nominations() { + return ( +
+

Nominaties

+
+ ); +} diff --git a/frontend/src/app/pause/page.tsx b/frontend/src/app/pause/page.tsx new file mode 100644 index 0000000..af198ff --- /dev/null +++ b/frontend/src/app/pause/page.tsx @@ -0,0 +1,7 @@ +export default function Pause() { + return ( +
+

Pause

+
+ ); +} diff --git a/frontend/src/app/post-game/page.tsx b/frontend/src/app/post-game/page.tsx new file mode 100644 index 0000000..490ffa9 --- /dev/null +++ b/frontend/src/app/post-game/page.tsx @@ -0,0 +1,7 @@ +export default function PostGame() { + return ( +
+

Post-game

+
+ ); +}