mirror of
https://github.com/documenso/documenso.git
synced 2026-07-12 22:15:01 +10:00
404, 500 pages skeleton
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import Link from "next/link";
|
||||
|
||||
export default function FourOhFour() {
|
||||
return (
|
||||
<>
|
||||
<h1>404 - Page Not Found</h1>
|
||||
<Link href="/">Go back home</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import Link from "next/link";
|
||||
|
||||
export default function FiveUhOh() {
|
||||
return (
|
||||
<>
|
||||
<h1>500 - Something went wrong.</h1>
|
||||
<Link href="/">Go back home</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user