diff --git a/pages/404.tsx b/pages/404.tsx new file mode 100644 index 00000000..2e9ff9e4 --- /dev/null +++ b/pages/404.tsx @@ -0,0 +1,33 @@ +import Image from "../components/Image"; +import Link from "../components/Link"; +import { styled } 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: "$text", + + "@medium": { + fontSize: "1.6em", + }, +}); + +const fourOhFour = () => { + return ( +