atri.dad/routes/_404.tsx
2025-04-23 01:15:21 -06:00

12 lines
218 B
TypeScript

import { Head } from "$fresh/runtime.ts";
export default function Error404() {
return (
<>
<Head>
<title>404 - Page not found</title>
</Head>
<h1>404 Page Not Found</h1>
</>
);
}