You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
598 B
22 lines
598 B
4 years ago
|
import Page from "../components/Page";
|
||
|
import Navbar from "../components/Navbar";
|
||
|
import Footer from "../components/Footer";
|
||
|
|
||
|
const NotFound = () => (
|
||
|
<Page title="Page not found" description="This page either doesn't exist or has been deleted">
|
||
|
<Navbar />
|
||
|
<div className="message">
|
||
|
<div>
|
||
|
<div className="header">Not found</div>
|
||
|
<div className="subtitle">This page either doesn't exist or has been deleted</div>
|
||
|
<a href="/" className="link button">
|
||
|
Go back
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<Footer />
|
||
|
</Page>
|
||
|
);
|
||
|
|
||
|
export default NotFound;
|