1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 16:28:28 -04:00
jarv.is/pages/404.tsx
2022-07-08 13:24:38 -04:00

39 lines
768 B
TypeScript

import { NextSeo } from "next-seo";
import Image from "../components/Image";
import Link from "../components/Link";
import { styled, theme } from "../lib/styles/stitches.config";
import pandaGif from "../public/static/images/angry-panda.gif";
const Center = styled("div", {
textAlign: "center",
});
const H1 = styled("h1", {
fontSize: "1.8em",
fontWeight: 500,
color: theme.colors.text,
"@medium": {
fontSize: "1.6em",
},
});
const FourOhFour = () => {
return (
<>
<NextSeo title="404 Not Found" />
<Center>
<Image src={pandaGif} alt="404s make panda angry..." quality={30} />
<H1>404: Page Not Found 😢</H1>
<Link href="/">Go home?</Link>
</Center>
</>
);
};
export default FourOhFour;