mirror of
https://github.com/khairul169/cebol.git
synced 2025-04-28 08:39:33 +07:00
16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
import type { FC } from "hono/jsx";
|
|
import Layout from "../layouts/layout";
|
|
|
|
const NotFoundPage: FC = () => {
|
|
return (
|
|
<Layout title="Link Not Found!">
|
|
<main class="container" style="margin-top: 2em;">
|
|
<h3>Link Not Found!</h3>
|
|
<p>The requested link was not found.</p>
|
|
</main>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default NotFoundPage;
|