interface BlogLeadParagraphProps {
children: React.ReactNode;
}
export const BlogLeadParagraph = ({ children }: BlogLeadParagraphProps) => {
return (
<p className="lead text-xl text-gray-600 mb-8 font-light leading-relaxed">
{children}
</p>
);
};