UNPKG
@atooni/gatsby-theme-ziodoc
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A Gatsby theme for ZIO micro sites
github.com/zio/gatsby-theme-zio
zio/gatsby-theme-zio
@atooni/gatsby-theme-ziodoc
/
src
/
pages
/
404.js
14 lines
(10 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
*
as
React
from
"react"
import
Seo
from
"../components/seo"
const
NotFoundPage
= (
) => (
<>
<
Seo
title
=
"404: Not found"
/>
<
h1
>
404: Not Found
</
h1
>
<
p
>
You just hit a route that doesn
'
t exist... the sadness.
</
p
>
</>
)
export
default
NotFoundPage