2025-09-27 22:36:26 +03:00

14 lines
365 B
TypeScript

import Section from "../components/Section.js";
import { usePageTitle } from "../hooks.js";
import "./_404.css";
export function NotFound() {
usePageTitle("404");
return (
<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>
);
}