aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/routes/(main)/(public)/+layout.svelte
blob: 0d84f9a58c9d84b8eb06a5519a1924cee7d592d6 (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/tos" class="link">
        {$LL.tos()}
    </a>
    <a href="https://greatoffice.life/documentation" class="link">
        {$LL.documentation()}
    </a>
</footer>