1<script lang="ts">
2 import '../app.css';
3 import { theme } from '$lib/theme.svelte';
4 import favicon from '$lib/assets/favicon.svg';
5
6 let { children } = $props();
7</script>
8
9<svelte:head>
10 <link rel="icon" href={favicon} />
11</svelte:head>
12
13<div
14 class="grain min-h-screen transition-colors duration-300"
15 style="background: {theme.bg}; color: {theme.fg};"
16>
17 {@render children?.()}
18</div>