summaryrefslogtreecommitdiff
path: root/deps/npm/docs/src/pages/404.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/src/pages/404.js')
-rw-r--r--deps/npm/docs/src/pages/404.js17
1 files changed, 5 insertions, 12 deletions
diff --git a/deps/npm/docs/src/pages/404.js b/deps/npm/docs/src/pages/404.js
index 5acc8fedb2..aa06a9d10c 100644
--- a/deps/npm/docs/src/pages/404.js
+++ b/deps/npm/docs/src/pages/404.js
@@ -1,19 +1,12 @@
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>
+ <React.Fragment>
+ <SEO title='404: Not found' />
+ <h1>NOT FOUND</h1>
+ <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
+ </React.Fragment>
)
export default NotFoundPage