2021-12-08 03:38:31 +00:00
|
|
|
import Layout from "../components/layout";
|
|
|
|
|
|
|
|
function NotFoundPage() {
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Layout name="... ??? / 404: Not Found">
|
2022-02-16 03:24:17 +00:00
|
|
|
<section className="block">
|
2021-12-08 03:38:31 +00:00
|
|
|
<h1>Error 404: Not Found</h1>
|
|
|
|
<p>
|
|
|
|
<strong>Uh oh! The page you are looking for does not exist...</strong><br />
|
|
|
|
<strong><a href="https://en.wikipedia.org/wiki/List_of_HTTP_status_codes">[Wikipedia] Learn more about HTTP status codes.</a></strong>
|
|
|
|
</p>
|
2022-02-16 03:24:17 +00:00
|
|
|
</section>
|
2021-12-08 03:38:31 +00:00
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default NotFoundPage;
|