diff --git a/src/pages/404.js b/src/pages/404.js index a091a00..d17d3e3 100644 --- a/src/pages/404.js +++ b/src/pages/404.js @@ -1,10 +1,15 @@ import React from 'react' +import Layout from '../components/Layout' -const NotFoundPage = () => ( -
-

NOT FOUND

-

You just hit a route that doesn't exist... the sadness.

-
-) +class NotFoundPage extends React.Component { + render() { + return ( + +

Not Found

+

You just hit a route that doesn't exist... the sadness.

+
+ ) + } +} export default NotFoundPage