blob: cbda776024a4ba90944b8fd99cd1533e7543cc49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script>
import { LocaleSwitcher } from "$lib/components";
import LL from "$lib/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>
|