chore: migrate to svelte 5

This commit is contained in:
2026-01-19 17:19:50 +01:00
parent 0f6d88355c
commit b221afee4a
6 changed files with 537 additions and 624 deletions
+8 -1
View File
@@ -1,8 +1,15 @@
<script>
import "../app.css";
/**
* @typedef {Object} Props
* @property {import('svelte').Snippet} [children]
*/
/** @type {Props} */
let { children } = $props();
</script>
<header class="fixed z-50 mix-blend-difference p-1">
<a href="/" class="text-white text-2xl">schreifuchs.ch</a>
</header>
<slot />
{@render children?.()}