diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-01-20 11:27:31 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-01-20 11:31:35 -0600 |
commit | e2b3df0508751d982c76752435390e958eb73b13 (patch) | |
tree | 76f5a004b10b232027b6a925c2f8fd2321c448a7 /clients/www/src/routes | |
parent | Update pnpm-lock (diff) | |
download | zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar.gz zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar.bz2 zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar.lz zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar.xz zorascript-e2b3df0508751d982c76752435390e958eb73b13.tar.zst zorascript-e2b3df0508751d982c76752435390e958eb73b13.zip |
Migrate repos
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'clients/www/src/routes')
-rw-r--r-- | clients/www/src/routes/+layout.svelte | 9 | ||||
-rw-r--r-- | clients/www/src/routes/+page.svelte | 4 |
2 files changed, 10 insertions, 3 deletions
diff --git a/clients/www/src/routes/+layout.svelte b/clients/www/src/routes/+layout.svelte index 15780c3..12996ec 100644 --- a/clients/www/src/routes/+layout.svelte +++ b/clients/www/src/routes/+layout.svelte @@ -1,4 +1,5 @@ <script lang="ts"> + import { base } from '$app/paths'; import '../app.postcss'; import { AppShell, AppBar, LightSwitch, initializeStores } from '@skeletonlabs/skeleton'; @@ -22,12 +23,16 @@ <svelte:fragment slot="lead"> <LightSwitch /> </svelte:fragment> - <a href="#">Zelda: Oracle Password Generator</a> + <a href="{base}/">Zelda: Oracle Password Generator</a> <svelte:fragment slot="trail"> - <a href="#">TODO: SOURCE CODE</a> + <a href="https://github.com/RosstheRoss/zorascript">TODO: SOURCE CODE</a> </svelte:fragment> </AppBar> </svelte:fragment> <!-- Page Route Content --> <slot /> </AppShell> + +{#await import('$lib/components/ReloadPrompt.svelte') then { default: ReloadPrompt }} + <ReloadPrompt /> +{/await} diff --git a/clients/www/src/routes/+page.svelte b/clients/www/src/routes/+page.svelte index 2ea190a..84d1c45 100644 --- a/clients/www/src/routes/+page.svelte +++ b/clients/www/src/routes/+page.svelte @@ -1 +1,3 @@ -TODO: Draw the rest of the owl
\ No newline at end of file +<svelte:head> + <title>Zelda: Oracle of [Ages,Seasons] Passphrase Generator</title> +</svelte:head>
\ No newline at end of file |