'use client'; import Link from 'next/link'; export default function Error({ reset, }: { error: Error & { digest?: string }; reset: () => void; }) { return (

500

Something went wrong

An unexpected error occurred. Try again or head back to the docs.

Home
); }