Skip to content

Commit d12985f

Browse files
authored
Page 404 (#1346)
1 parent 48e717a commit d12985f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/pages/404.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import * as React from "react"
2+
import Layout from "../components/Layout"
3+
import Seo from "../components/Seo"
4+
5+
const NotFound: React.FC = ({}) => {
6+
return (
7+
<Layout className="code">
8+
<div className="code-hero">
9+
<div className="code-hero-inner">
10+
<h1>Oops!</h1>
11+
<p>Page not found!</p>
12+
</div>
13+
</div>
14+
</Layout>
15+
)
16+
}
17+
18+
export function Head() {
19+
return <Seo title="GraphQL: Page not found" />
20+
}
21+
22+
export default NotFound

0 commit comments

Comments
 (0)