summaryrefslogtreecommitdiff
path: root/deps/npm/docs/src/pages/404.js
blob: 5acc8fedb2fc3c99cf6096257d2e51459e610733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React from 'react'

import Layout from 'src/components/Layout'
import SEO from 'src/components/seo'

import {ThemeProvider} from 'styled-components'
import {theme} from 'src/theme'

const NotFoundPage = () => (
  <ThemeProvider theme={theme}>
    <Layout>
      <SEO title='404: Not found' />
      <h1>NOT FOUND</h1>
      <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
    </Layout>
  </ThemeProvider>
)

export default NotFoundPage