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

11 lines
180 B
JavaScript

import Link from "next/link";
export default function FourOhFour() {
return (
<>
<h1>404 - Page Not Found</h1>
<Link href="/">Go back home</Link>
</>
);
}