"use client"; import { AlertTriangle, RotateCw } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; export default function AppError({ error, reset }: { error: Error; reset: () => void }) { return (

Something went wrong

{error.message || "This page failed to load. Please try again."}

); }