feat(website): improve 404 page

This commit is contained in:
Elian Doran 2025-09-27 01:20:59 +03:00
parent 4954fa89b5
commit 428abb4591
No known key found for this signature in database
2 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,9 @@
section.section-404 {
text-align: center;
background: var(--background-color);
}
section.section-404 h2 {
color: var(--brand-3);
margin: 1em;
}

View File

@ -1,9 +1,10 @@
import Section from "../components/Section";
import "./_404.css";
export function NotFound() {
return (
<Section title="404: Not Found">
<p>It's gone :(</p>
<Section title="404: Not Found" className="section-404">
The page you were looking for could not be found. Maybe it was deleted or the URL is incorrect.
</Section>
);
}