wip: scaffolding + types + styles

This commit is contained in:
2026-04-12 21:22:34 -04:00
parent 5988f807ba
commit fcf80638e1
18 changed files with 1667 additions and 4 deletions

11
src/routes/+layout.svelte Normal file
View File

@@ -0,0 +1,11 @@
<script lang="ts">
import favicon from '$lib/assets/favicon.svg';
let { children } = $props();
</script>
<svelte:head>
<link rel="icon" href={favicon} />
</svelte:head>
{@render children()}