11 lines
185 B
React
11 lines
185 B
React
|
|
import Link from "next/link";
|
||
|
|
|
||
|
|
export default function FiveUhOh() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<h1>500 - Something went wrong.</h1>
|
||
|
|
<Link href="/">Go back home</Link>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|