diff --git a/src/pages/404.js b/src/pages/404.js new file mode 100644 index 0000000..2235446 --- /dev/null +++ b/src/pages/404.js @@ -0,0 +1,17 @@ +import React from "react"; +import Layout from "../components/layout" + +export default function NotFound() { + return ( + +

404 : Page not found

+

+ Sorry, we've misplaced that URL or it's pointing + to something that doesn't exist. +

+

+ Head back home to try finding it again. +

+
+ ) +}