import type { FC, Child } from "hono/jsx"; interface PageHeaderProps { title: string; description?: string; action?: Child; } export const PageHeader: FC = ({ title, description, action }) => ( );