Files
documenso/apps/web/pages/500.jsx
2023-02-13 13:04:15 +01:00

11 lines
185 B
JavaScript

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