404, 500 pages skeleton

This commit is contained in:
Timur Ercan
2023-02-13 13:04:15 +01:00
parent df047bc749
commit 42883f9dd8
2 changed files with 20 additions and 0 deletions

10
apps/web/pages/404.jsx Normal file
View 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
View 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>
</>
);
}