import { PageProps } from "$fresh/server.ts"; export default function NotFound(props: PageProps) { return (
Not Found: {props.url.pathname}
); }