'use client' import { DashboardLayout } from '@/components/layout/DashboardLayout' import { AlertPanel, useAlerts } from '@/components/alerts' import { RefreshCw } from 'lucide-react' export default function AlertsPage() { const { regenerateAlerts, dismissAll } = useAlerts() const handleRegenerateAlerts = () => { regenerateAlerts() } const handleDismissAll = () => { dismissAll() } return (
{/* Action Buttons */}
{/* Alert Panel */}
) }