Created 404 page

This commit is contained in:
DrMint 2021-12-23 23:07:20 +01:00
parent ee0fe7fdf3
commit 69d86ecd6c
1 changed files with 13 additions and 0 deletions

13
src/pages/404.tsx Normal file
View File

@ -0,0 +1,13 @@
import Link from "next/link";
import ContentPanel from "components/Panels/ContentPanel";
export default function FourOhFour() {
return (
<ContentPanel>
<h1>404 - Page Not Found</h1>
<Link href="/">
<a>Go back home</a>
</Link>
</ContentPanel>
);
}