mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-06 13:21:53 +00:00
15 lines
460 B
Svelte
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>
|