Dummy content

This commit is contained in:
Neshura 2023-12-05 20:27:38 +01:00
parent fdbb265ae6
commit 4eef07de01
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
8 changed files with 38 additions and 5 deletions

View file

@ -36,8 +36,6 @@
});
}*/
</script>
<div class="
@ -45,6 +43,7 @@
text-{themes[$UserSettingsStore.themeId].textColor}
h-full" >
<Header/>
<slot />
<!-- (sidebarLeft) -->
<!-- (sidebarRight) -->
<!-- <svelte:fragment slot="pageHeader">Page Header</svelte:fragment> -->

View file

@ -1,13 +1,16 @@
<!-- YOU CAN DELETE EVERYTHING IN THIS PAGE -->
<script lang="ts">
</script>
<div class="container h-full mx-auto flex justify-center items-center">
<div class="container h-full mx-auto flex flex-col justify-center items-center">
<h1>Chellaris</h1>
<div class="space-y-5">
<ul>
<li>
<a class="hover:text-primary-500" href="/graphs">Graphs</a>
<a class="hover:text-primary-500" href="/current">Current Game</a>
</li>
<li>
<a class="hover:text-primary-500" href="/legacy-graphs">Game 15 Graphs</a>
<a class="hover:text-primary-500" href="/archive/1">Previous Game</a>
</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
<script lang="ts">
</script>
<div>
PREVIOUS GAMES PAGE
</div>

View file

@ -0,0 +1,8 @@
<script lang="ts">
import type { PageData } from './$types'
export let data: PageData;
</script>
<div>
PREVIOUS GAME {data.gameId} PAGE
</div>

View file

@ -0,0 +1,8 @@
import { error } from '@sveltejs/kit';
/** @type {import('./$types').PageLoad} */
export function load({ params }) {
return {
gameId: params.gameId
}
}

View file

@ -0,0 +1,3 @@
<div>
CURRENT GAME PAGE
</div>

View file

@ -0,0 +1,3 @@
<div>
LOGIN PAGE
</div>

View file

@ -0,0 +1,3 @@
<div>
SETTINGS PAGE
</div>