500.tsx 203 B

123456789101112
  1. import Link from "next/link";
  2. export default function FourOhFour() {
  3. return (
  4. <>
  5. <h1>500 - Page Not Found</h1>
  6. <Link href="/">
  7. <a>Go back home</a>
  8. </Link>
  9. </>
  10. );
  11. }