aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/routes/(main)/(public)/+layout.svelte
blob: 6da653cf9f075a01e54ec8e899f41766f5918852 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
    import { LocaleSwitcher } from "$components";
    import LL from "$i18n/i18n-svelte";
</script>

<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/terms" class="link">
        {$LL.tos()}
    </a>
    <a href="https://greatoffice.life/docs" class="link">
        {$LL.documentation()}
    </a>
</footer>