interface BlogLeadParagraphProps { children: React.ReactNode; } export const BlogLeadParagraph = ({ children }: BlogLeadParagraphProps) => { return (

{children}

); };