diff --git a/src/pages/404.js b/src/pages/404.js index 2a9d439..08b0a05 100644 --- a/src/pages/404.js +++ b/src/pages/404.js @@ -1,12 +1,17 @@ import React from "react" import { Link } from "gatsby" +import Seo from "../components/seo" + import "../css/base.css" const NotFoundPage = () => { return ( <> - Not found + +

Page not found

Sorry we couldn’t find what you were looking for. diff --git a/src/pages/index.js b/src/pages/index.js index f919284..c2e95e9 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,6 +1,6 @@ import React from "react" import { Link } from "gatsby" -import { NotificationContainer } from 'react-notifications' +import { NotificationContainer } from "react-notifications" import Seo from "../components/seo"