Initial commit

This commit is contained in:
Jarek Krochmalski
2025-12-28 21:16:03 +01:00
commit 62e3c6439e
552 changed files with 104858 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<script lang="ts">
import { Bell } from 'lucide-svelte';
import PageHeader from '$lib/components/PageHeader.svelte';
</script>
<div class="flex flex-col gap-6 p-6">
<PageHeader icon={Bell} title="Alerts" />
<div class="flex flex-col items-center justify-center py-12 text-muted-foreground">
<Bell class="h-12 w-12 mb-4 opacity-50" />
<p class="text-lg">No alerts configured</p>
<p class="text-sm">Alert configuration coming soon</p>
</div>
</div>