"use client"; import { useEffect } from "react"; import { IconCircleAlert } from "@/components/__legacy__/ui/icons"; import { Button } from "@/components/__legacy__/ui/button"; import Link from "next/link"; export default function Error({ error, reset, }: { error: Error & { digest?: string }; reset: () => void; }) { useEffect(() => { console.error(error); }, [error]); return (

Oops, something went wrong!

We're sorry, but an unexpected error has occurred. Please try again later or contact support if the issue persists.

); }