import { cn } from '@/utils/cn'; interface ContentHeaderProps { title: string; text: string; children?: React.ReactNode; } export function ContentHeader({ title, text, children }: ContentHeaderProps) { return (

{title}

{text}

{children}
); } interface ContentSectionProps { title: string; text?: string | React.ReactNode; children: React.ReactNode; asCol?: boolean; } export function ContentSection({ title, text, children, asCol, }: ContentSectionProps) { return (
{title && (

{title}

{text &&

{text}

}
)}
{children}
); }