setup: first svelte setup

This commit is contained in:
2025-09-10 10:27:55 +02:00
commit e2924483e2
19 changed files with 3809 additions and 0 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?.()}