gatsby-pingbot/src/pages/404.js

23 lines
435 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 { Link } from "gatsby"
import "../css/base.css"
const NotFoundPage = () => {
return (
<>
<title>Not found</title>
<h1>Page not found</h1>
<p>
Sorry we couldnt find what you were looking for.
<br />
<Link to="/">
<button className="blue-buton">Go to home page</button>
</Link>
</p>
</>
)
}
export default NotFoundPage