mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
404, 500 pages skeleton
This commit is contained in:
10
apps/web/pages/404.jsx
Normal file
10
apps/web/pages/404.jsx
Normal file
@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
10
apps/web/pages/500.jsx
Normal file
10
apps/web/pages/500.jsx
Normal file
@ -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