"use client"; import { useEffect } from "react"; export default function Error({ error, unstable_retry, }: { error: Error & { digest?: string }; unstable_retry: () => void; }) { useEffect(() => { console.error(error); }, [error]); return (

Something went wrong

An unexpected error occurred. Please try again, or contact us at{" "} contact@novarixnet.com {" "} if the problem persists.

Go home
); }