import type { FC } from "hono/jsx"; import { html } from "hono/html"; import Layout from "./Layout.js"; const NotFound: FC = () => { return ( 404 Not Found 请检查您的路径 回到首页 {html` `} ); }; export default NotFound;