chore(website): apply content width to 404 page

This commit is contained in:
Elian Doran 2025-09-27 00:09:17 +03:00
parent 7c30bc9c72
commit 3c2263db86
No known key found for this signature in database

View File

@ -1,8 +1,9 @@
import Section from "../components/Section";
export function NotFound() { export function NotFound() {
return ( return (
<section> <Section title="404: Not Found">
<h1>404: Not Found</h1>
<p>It's gone :(</p> <p>It's gone :(</p>
</section> </Section>
); );
} }