fixed 404 page

This commit is contained in:
Elinorre 2020-01-25 15:20:27 +03:00
parent e4e1871454
commit 7c663517f6

View File

@ -3,8 +3,10 @@ import Layout from "../components/layout"
const NotFoundPage = () => (
<Layout>
<h1 style={{marginTop: `300px`, textAlign: `center`}}>404: NOT FOUND</h1>
<p style={{marginBottom: `400px`, textAlign: `center`}}>You just hit a route that doesn&#39;t exist.</p>
<div style={{minHeight: `95vh`}}>
<h1 style={{textAlign: `center`, paddingTop: `300px`}}>404: NOT FOUND</h1>
<p style={{textAlign: `center`}}>You just hit a route that doesn&#39;t exist.</p>
</div>
</Layout>
)