feat: init

This commit is contained in:
hh
2026-05-28 21:59:44 +02:00
commit e08d26dd10
34 changed files with 893 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<script lang="ts">
import "./layout.css";
import favicon from "$lib/assets/favicon.svg";
let { children } = $props();
</script>
<svelte:head><link rel="icon" href={favicon}></svelte:head>
{@render children()}
+5
View File
@@ -0,0 +1,5 @@
<h1>Welcome to SvelteKit</h1>
<p>
Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read
the documentation
</p>
+2
View File
@@ -0,0 +1,2 @@
@import "tailwindcss";
@plugin "@tailwindcss/typography";