diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000000..20fbb5a4cc --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,22 @@ +import * as React from "react" +import Layout from "../components/Layout" +import Seo from "../components/Seo" + +const NotFound: React.FC = ({}) => { + return ( + +
+
+

Oops!

+

Page not found!

+
+
+
+ ) +} + +export function Head() { + return +} + +export default NotFound