Change 404 tag

This commit is contained in:
Paul W. 2022-02-15 22:24:17 -05:00
parent 9ca3e18dd4
commit 2164775c6f

View File

@ -4,13 +4,13 @@ function NotFoundPage() {
return ( return (
<Layout name="... ??? / 404: Not Found"> <Layout name="... ??? / 404: Not Found">
<div className="block"> <section className="block">
<h1>Error 404: Not Found</h1> <h1>Error 404: Not Found</h1>
<p> <p>
<strong>Uh oh! The page you are looking for does not exist...</strong><br /> <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> <strong><a href="https://en.wikipedia.org/wiki/List_of_HTTP_status_codes">[Wikipedia] Learn more about HTTP status codes.</a></strong>
</p> </p>
</div> </section>
</Layout> </Layout>
); );
} }