mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-09 13:24:51 +00:00
Initial commit
This commit is contained in:
14
routes/alerts/+page.svelte
Normal file
14
routes/alerts/+page.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user