diff --git a/src/routes/hostgame/[gamePin]/+page.svelte b/src/routes/hostgame/[gamePin]/+page.svelte
new file mode 100644
index 0000000..1c47d33
--- /dev/null
+++ b/src/routes/hostgame/[gamePin]/+page.svelte
@@ -0,0 +1,109 @@
+
+
+
+
+
HOSTING
+
+
Question {currentQuestion + 1} of {totalQuetions} is beeing awnsered
+
+
+
+
{PeopleAwnseredQ} out of {Totalplayers} have awnsered the quetion
+
+
+
+
diff --git a/src/routes/play/[gamePin]/+page.svelte b/src/routes/play/[gamePin]/+page.svelte
new file mode 100644
index 0000000..a0a13c3
--- /dev/null
+++ b/src/routes/play/[gamePin]/+page.svelte
@@ -0,0 +1,142 @@
+
+
+
+
+
+
Question {currentQuestion + 1} of {question.length}
+
+
+ {#if isWait != true}
+
+ Q{currentQuestion + 1}. {question[currentQuestion].name}
+
+
+ {#each question[currentQuestion].answers as answer, index}
+
+
+
+
+ {/each}
+
+ {#if Selected != null}
+
+ {:else}
+
+ {/if}
+ {:else}
+ Please wait for everyone else to answer the question.
+
{/if}
+
+
diff --git a/src/routes/results/[gamePin]/+page.js b/src/routes/results/[gamePin]/+page.js
new file mode 100644
index 0000000..aea5dc3
--- /dev/null
+++ b/src/routes/results/[gamePin]/+page.js
@@ -0,0 +1,5 @@
+export function load({ params }) {
+ return {
+ gamePin: params.gamePin
+ };
+}
diff --git a/src/routes/results/[gamePin]/+page.svelte b/src/routes/results/[gamePin]/+page.svelte
new file mode 100644
index 0000000..972b002
--- /dev/null
+++ b/src/routes/results/[gamePin]/+page.svelte
@@ -0,0 +1,71 @@
+
+
+
+
+
Leaderboard
+
+ {#if players}
+ {#each players as player, i}
+ {#if name == player.name}
+
+
+ {i + 1}
+
+
{player.name}
+
+
+
{player.score} points
+
+
+
+ {:else}
+
+ {i + 1}
+
+
{player.name}
+
+
{player.score} points
+
+ {/if}
+ {/each}
+ {/if}
+
+
+
+