'use client'; import { Button } from '@/components/ui/button.js'; import { Card, CardContent, CardFooter, CardHeader, CardTitle } from '@/components/ui/card.js'; import { AlertCircle } from 'lucide-react'; export default function DashboardError({ error, reset }: { error: Error & { digest?: string }; reset: () => void }) { return (
{error.message || 'An unexpected error occurred while loading the dashboard.'}