import { Html } from "@elysiajs/html"; export const BaseHtml = ({ children, title = "ConvertX", }: { children: JSX.Element; title?: string; }) => ( {title} {children} );