gatsby-pingbot/src/pages/404.js

23 lines
435 B
JavaScript
Raw Normal View History

2021-08-04 19:17:51 +00:00
import React from "react"
2021-08-04 09:48:04 +00:00
import { Link } from "gatsby"
2021-08-04 19:17:51 +00:00
import "../css/base.css"
2021-08-04 09:48:04 +00:00
const NotFoundPage = () => {
return (
2021-08-04 19:17:51 +00:00
<>
2021-08-04 09:48:04 +00:00
<title>Not found</title>
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-04 19:17:51 +00:00
<Link to="/">
<button className="blue-buton">Go to home page</button>
</Link>
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