initial commit

This commit is contained in:
2025-11-13 22:16:24 -03:00
commit 1271248af5
48 changed files with 1584 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<script lang="ts">
import '../app.css';
import favicon from '$lib/assets/favicon.svg';
import { ModeWatcher } from 'mode-watcher';
import Header from '@/head/Header.svelte';
let { children } = $props();
</script>
<svelte:head>
<link rel="icon" href={favicon} />
</svelte:head>
<ModeWatcher />
<Header />
{@render children()}