Files
sign/apps/web/pages/500.jsx

11 lines
185 B
React
Raw Normal View History

2023-02-13 13:04:15 +01:00
import Link from "next/link";
export default function FiveUhOh() {
return (
<>
<h1>500 - Something went wrong.</h1>
<Link href="/">Go back home</Link>
</>
);
}