aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/(main)/(public)/+layout.svelte
blob: 69c29c569d4b79733e1ceadd7fe088e92c3e869a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
    import LL from "$lib/i18n/i18n-svelte";
</script>

<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>