-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
/** @jsxImportSource ../jsx */
import { type Route } from "../route.js";
export const notFound: Route = {
title: "Page not found",
content() {
return (
<div>
<h1>Page not found</h1>
<p>The page you're looking for does not exist.</p>
</div>
);
},
};