"use client"; // Error components must be Client Components import { Button } from "@/components/ui/button"; import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import { Info } from "lucide-react"; export default function Error({ error, reset }: { error: Error & { digest?: string } reset: () => void }) { return (