diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-11 20:46:58 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-11 20:47:06 +0100 |
| commit | 6561771c435f9d9bed1589b5ed13d17aee0b7873 (patch) | |
| tree | 2c47e60fa4aaaa5bf1e151838ac197a61f4377cc /code/app/src/routes/(main)/(public)/+layout.svelte | |
| parent | 8da37c77cae0c7f712a775e3996afd9d84b0f9af (diff) | |
| download | greatoffice-6561771c435f9d9bed1589b5ed13d17aee0b7873.tar.xz greatoffice-6561771c435f9d9bed1589b5ed13d17aee0b7873.zip | |
feat: Add frontpage
Diffstat (limited to 'code/app/src/routes/(main)/(public)/+layout.svelte')
| -rw-r--r-- | code/app/src/routes/(main)/(public)/+layout.svelte | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/code/app/src/routes/(main)/(public)/+layout.svelte b/code/app/src/routes/(main)/(public)/+layout.svelte index 0d84f9a..6da653c 100644 --- a/code/app/src/routes/(main)/(public)/+layout.svelte +++ b/code/app/src/routes/(main)/(public)/+layout.svelte @@ -1,18 +1,18 @@ <script> - import {LocaleSwitcher} from "$components"; + import { LocaleSwitcher } from "$components"; import LL from "$i18n/i18n-svelte"; </script> -<LocaleSwitcher tabindex={-1}/> -<slot/> +<LocaleSwitcher tabindex={-1} /> +<slot /> <footer class="grid sm:gap-5 grid-flow-row sm:justify-center px-2 sm:grid-flow-col"> <a href="https://greatoffice.life/privacy" class="link"> {$LL.privacyPolicy()} </a> - <a href="https://greatoffice.life/tos" class="link"> + <a href="https://greatoffice.life/terms" class="link"> {$LL.tos()} </a> - <a href="https://greatoffice.life/documentation" class="link"> + <a href="https://greatoffice.life/docs" class="link"> {$LL.documentation()} </a> </footer> |
