gatsby-pingbot/src/pages/404.js

26 lines
505 B
JavaScript
Raw Normal View History

2021-08-19 21:13:03 +00:00
import React from 'react'
import AniLink from 'gatsby-plugin-transition-link/AniLink'
2021-08-04 09:48:04 +00:00
2021-08-19 21:13:03 +00:00
import Seo from '../components/seo'
2021-08-06 17:58:01 +00:00
2021-08-04 09:48:04 +00:00
const NotFoundPage = () => {
return (
2021-08-04 19:17:51 +00:00
<>
2021-08-06 17:58:01 +00:00
<Seo
title="Not found"
/>
2021-08-04 19:17:51 +00:00
<h1>Page not found</h1>
<p>
Sorry we couldnt find what you were looking for.
2021-08-04 09:48:04 +00:00
<br />
2021-08-06 18:17:07 +00:00
<AniLink cover to="/">
<button className="blue-button">Go to home page</button>
2021-08-06 18:17:07 +00:00
</AniLink>
2021-08-04 09:48:04 +00:00
</p>
2021-08-04 19:17:51 +00:00
</>
2021-08-04 09:48:04 +00:00
)
}
export default NotFoundPage