mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 01:01:49 +10:00
11 lines
180 B
JavaScript
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>
|
|
</>
|
|
);
|
|
}
|