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.
21 lines
563 B
21 lines
563 B
import Page from "@components/Page";
|
|
import Layout from "@components/Layout";
|
|
|
|
const NotFound = () => (
|
|
<Page title="Page not found" description="This page either doesn't exist or has been deleted">
|
|
<Layout>
|
|
<div className="page">
|
|
<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>
|
|
</Layout>
|
|
</Page>
|
|
);
|
|
|
|
export default NotFound;
|