gatsby-pingbot/src/pages/404.js

26 lines
505 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import AniLink from 'gatsby-plugin-transition-link/AniLink'
import Seo from '../components/seo'
const NotFoundPage = () => {
return (
<>
<Seo
title="Not found"
/>
<h1>Page not found</h1>
<p>
Sorry we couldnt find what you were looking for.
<br />
<AniLink cover to="/">
<button className="blue-button">Go to home page</button>
</AniLink>
</p>
</>
)
}
export default NotFoundPage