import type { FC } from "hono/jsx"; import Layout from "../layouts/layout"; const NotFoundPage: FC = () => { return (

Link Not Found!

The requested link was not found.

); }; export default NotFoundPage;