1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-28 20:55:47 -04:00

update link to archived hugo site

This commit is contained in:
2022-04-23 07:54:03 -04:00
parent de28dbf4ed
commit 392ad9bb56
4 changed files with 20 additions and 11 deletions

View File

@@ -1,3 +1,4 @@
import { NextSeo } from "next-seo";
import Image from "../components/Image";
import Link from "../components/Link";
import { styled } from "../lib/styles/stitches.config";
@@ -20,13 +21,17 @@ const H1 = styled("h1", {
const fourOhFour = () => {
return (
<Center>
<Image src={pandaGif} alt="404s make panda angry..." priority />
<>
<NextSeo title="404 Not Found" />
<H1>404: Page Not Found</H1>
<Center>
<Image src={pandaGif} alt="404s make panda angry..." priority />
<Link href="/">Go home?</Link>
</Center>
<H1>404: Page Not Found</H1>
<Link href="/">Go home?</Link>
</Center>
</>
);
};