First commit

This commit is contained in:
Håkon Størdal 2025-09-02 15:16:54 +02:00
commit 5326f3151d
18 changed files with 2541 additions and 0 deletions

12
src/routes/+layout.svelte Normal file
View file

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

2
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,2 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>