Files
dockhand/routes/alerts/+page.svelte
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

15 lines
460 B
Svelte

<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>