import { h } from "../jsx.ts"; import { Context } from "../oak.ts"; import Base from "../templates/Base.tsx"; export default (_: unknown, ctx: Context) => { ctx.response.status = 404; return (

404

Page not found.

); };