summaryrefslogtreecommitdiffstats
path: root/apps/frontpage/src/routes/__layout-docs.svelte
blob: d0a17ef681f72a1c5ad4f263246664c7b27eab0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
  import ThemeSwitcher from "$shared/components/theme-switcher.svelte";
</script>
<main class="padding-md">
  <nav>
    <a href="/">Go back</a>
  </nav>
  <slot></slot>
  <div class="position-fixed right-0 top-0 margin-md z-index-2">
    <ThemeSwitcher/>
  </div>

</main>