banatie-service/apps/landing/src/app/(landings)/blog/_components/BlogLeadParagraph.tsx

12 lines
268 B
TypeScript

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>
);
};