Created 404 page
This commit is contained in:
parent
ee0fe7fdf3
commit
69d86ecd6c
|
@ -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>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue