"use client" import { Button } from "@/components/ui/button" import * as Sentry from "@sentry/nextjs" import { Angry } from "lucide-react" import Link from "next/link" import { useEffect } from "react" export default function GlobalError({ error }: { error: Error }) { useEffect(() => { Sentry.captureException(error) }, [error]) return (

Oops! Something went wrong

We apologize for the inconvenience. Our team has been notified and is working to fix the issue.

) }