This commit is contained in:
user
2026-03-27 20:06:38 +02:00
commit 8c45efc92e
544 changed files with 33060 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script lang="ts">
import { Toaster } from "$lib/components/ui/sonner/index.js";
import { ModeWatcher } from "mode-watcher";
import { breadcrumbs } from "$lib/global.stores";
import "./layout.css";
let { children }: { children: any } = $props();
</script>
<svelte:head>
<title>{$breadcrumbs[$breadcrumbs.length - 1]?.title ?? "Dashboard"}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A base SaaS template" />
</svelte:head>
<ModeWatcher />
<Toaster />
{@render children()}