Better 404 for docs

This commit is contained in:
Konstantin Wohlwend 2025-07-30 13:36:34 -07:00
parent e24d47b80f
commit d191b79197

View File

@ -1,11 +1,8 @@
import Link from "next/link";
export default function NotFound() {
return (
<div>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
<Link href="/">Return Home</Link>
<h2>404 Not Found</h2>
</div>
);
}