| "use client"; |
|
|
| import { Button } from "@/components/ui/button"; |
| import Link from "next/link"; |
| import { useEffect } from "react"; |
|
|
| export default function Error({ |
| error, |
| reset, |
| }: { |
| error: Error & { digest?: string }; |
| reset: () => void; |
| }) { |
| useEffect(() => { |
| console.error(error); |
| }, [error]); |
|
|
| return ( |
| <div className="flex min-h-screen flex-col items-center justify-center bg-linear-to-br from-blue-50 via-purple-50 to-pink-50 dark:from-gray-950 dark:via-gray-900 dark:to-gray-950 p-4"> |
| <div className="mx-auto max-w-md text-center"> |
| <div className="mb-8"> |
| <div className="mx-auto mb-4 flex h-20 w-20 items-center justify-center rounded-full bg-red-100 dark:bg-red-900/20"> |
| <svg |
| className="h-10 w-10 text-red-600 dark:text-red-400" |
| fill="none" |
| viewBox="0 0 24 24" |
| stroke="currentColor" |
| > |
| <path |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| strokeWidth={2} |
| d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" |
| /> |
| </svg> |
| </div> |
| <h1 className="mb-2 text-4xl font-bold">Oops! Something went wrong</h1> |
| <p className="text-muted-foreground"> |
| We're sorry for the inconvenience. An error occurred while processing your |
| request. |
| </p> |
| </div> |
| |
| <div className="flex flex-col gap-3 sm:flex-row sm:justify-center"> |
| <Button onClick={reset} size="lg"> |
| Try Again |
| </Button> |
| <Link href="/dashboard"> |
| <Button variant="outline" size="lg"> |
| Go to Dashboard |
| </Button> |
| </Link> |
| </div> |
| |
| {process.env.NODE_ENV === "development" && ( |
| <div className="mt-8 rounded-lg bg-red-50 dark:bg-red-900/10 p-4 text-left"> |
| <p className="text-sm font-medium text-red-800 dark:text-red-400 mb-2"> |
| Error Details (Development Only) |
| </p> |
| <pre className="text-xs text-red-700 dark:text-red-300 overflow-auto"> |
| {error.message} |
| </pre> |
| </div> |
| )} |
| </div> |
| </div> |
| ); |
| } |
|
|