"use client"; import { AlertTriangle } from "lucide-react"; export default function Error({ reset }: { error: Error; reset: () => void }) { return (

Something went wrong

An unexpected error occurred. You can try again or head back to the dashboard.

Go to dashboard
); }