import { h, type FunctionComponent } from 'preact' import type { RoutableProps } from 'preact-router' const NotFoundPage: FunctionComponent = () => (

Not Found :(

Try the Start Page

) export default NotFoundPage