You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
import * as React from "react"
|
|
|
|
import Seo from "../components/seo"
|
|
|
|
const NotFoundPage = () => (
|
|
<>
|
|
<h1>404: Not Found</h1>
|
|
<p>You just hit a route that doesn't exist... the sadness.</p>
|
|
</>
|
|
)
|
|
|
|
export const Head = () => <Seo title="404: Not Found" />
|
|
|
|
export default NotFoundPage
|