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

11 lines
180 B
React
Raw Normal View History

2023-02-13 13:04:15 +01:00
import Link from "next/link";
export default function FourOhFour() {
return (
<>
<h1>404 - Page Not Found</h1>
<Link href="/">Go back home</Link>
</>
);
}