Dummy content
This commit is contained in:
parent
fdbb265ae6
commit
4eef07de01
8 changed files with 38 additions and 5 deletions
|
@ -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> -->
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<script lang="ts">
|
||||
</script>
|
||||
|
||||
<div>
|
||||
PREVIOUS GAMES PAGE
|
||||
</div>
|
8
src/routes/archive/[gameId]/+page.svelte
Normal file
8
src/routes/archive/[gameId]/+page.svelte
Normal 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>
|
8
src/routes/archive/[gameId]/+page.ts
Normal file
8
src/routes/archive/[gameId]/+page.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { error } from '@sveltejs/kit';
|
||||
|
||||
/** @type {import('./$types').PageLoad} */
|
||||
export function load({ params }) {
|
||||
return {
|
||||
gameId: params.gameId
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
CURRENT GAME PAGE
|
||||
</div>
|
3
src/routes/login/+page.svelte
Normal file
3
src/routes/login/+page.svelte
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
LOGIN PAGE
|
||||
</div>
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
SETTINGS PAGE
|
||||
</div>
|
Reference in a new issue