File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change
1
+ import { Trans } from "gatsby-plugin-react-i18next"
1
2
import * as React from "react"
2
3
3
4
import Layout from "../components/layout"
4
5
import SEO from "../components/seo"
6
+ import SiteBorderStyles from "../styles/SiteBorderStyles"
5
7
6
8
const NotFoundPage = ( ) => (
7
9
< Layout >
8
- < SEO title = "404: Not found" />
9
- < h1 > 404: Not Found</ h1 >
10
- < p > You just hit a route that doesn't exist... the sadness.</ p >
10
+ < SEO title = "404" />
11
+ < SiteBorderStyles >
12
+ < section >
13
+ < div className = "text-left md:text-center py-4 md:pt-16 md:pb-8 lg:pt-24 md:pb-8" >
14
+ < h2 className = "text-3xl lg:text-4xl" >
15
+ < span className = "highlight-red" >
16
+ 404
17
+ </ span >
18
+ < Trans > Not Found</ Trans >
19
+ </ h2 >
20
+ < p className = "text-xl lg:text-2xl my-4" style = { { color : `var(--darkgrey)` } } >
21
+ < Trans > You just hit a route that doesn't exist... the sadness.</ Trans >
22
+ </ p >
23
+ </ div >
24
+ </ section >
25
+
26
+ </ SiteBorderStyles >
11
27
</ Layout >
12
28
)
13
29
You can’t perform that action at this time.
0 commit comments