ui(404): improve 404 page styling

This commit is contained in:
Dhanush Adithya
2020-08-07 01:58:43 -04:00
committed by Jean-Philippe Sirois
parent 2f81f5778b
commit fadb031f70
6 changed files with 51 additions and 9 deletions
+5 -2
View File
@@ -1,4 +1,5 @@
import React, { Fragment } from "react"
import * as SC from "./styles"
import { SEO } from "../components/SEO"
@@ -6,8 +7,10 @@ function NotFoundPage() {
return (
<Fragment>
<SEO title="404: Not found" />
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
<SC.StyledDiv>
<SC.StyledH1>NOT FOUND</SC.StyledH1>
<SC.StyledPara>You just hit a route that doesn&#39;t exist... the sadness.</SC.StyledPara>
</SC.StyledDiv>
</Fragment>
)
}