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
src/routes/+layout.svelte Normal file
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()}

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>