diff options
Diffstat (limited to '')
-rw-r--r-- | clients/www/src/routes/+layout.svelte | 5 | ||||
-rw-r--r-- | clients/www/src/routes/+page.svelte | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/clients/www/src/routes/+layout.svelte b/clients/www/src/routes/+layout.svelte index a651da6..a80d9aa 100644 --- a/clients/www/src/routes/+layout.svelte +++ b/clients/www/src/routes/+layout.svelte @@ -1,4 +1,5 @@ <script lang="ts"> + import "iconify-icon"; import { base } from '$app/paths'; import '../app.postcss'; import { AppShell, AppBar, LightSwitch, initializeStores, Toast } from '@skeletonlabs/skeleton'; @@ -27,7 +28,9 @@ </svelte:fragment> <a href="{base}/">Zelda: Oracle Password Generator</a> <svelte:fragment slot="trail"> - <a href="https://github.com/RosstheRoss/zorascript">TODO: SOURCE CODE</a> + <a href="https://github.com/RosstheRoss/zorascript"> + <iconify-icon icon="mdi:github" height="auto" /> + </a> </svelte:fragment> </AppBar> </svelte:fragment> diff --git a/clients/www/src/routes/+page.svelte b/clients/www/src/routes/+page.svelte index e963da4..1286b34 100644 --- a/clients/www/src/routes/+page.svelte +++ b/clients/www/src/routes/+page.svelte @@ -1,3 +1,5 @@ <svelte:head> <title>Zelda: Oracle of [Ages,Seasons] Passphrase Generator</title> </svelte:head> + +Coming eventually.... |