import { escapeHtml } from "../utils/html"; interface LayoutProps { title: string; content: string; } export function BaseLayout({ title, content }: LayoutProps): string { const safeTitle = escapeHtml(title); return `