import { cn } from '@/lib/utils'; export function Section({ children, className, }: { children: React.ReactNode; className?: string; }) { return
{children}
; } export function SectionHeader({ tag, title, description, className, }: { tag?: React.ReactNode; title: string; description: string; className?: string; }) { return (
{tag}

{title}

{description}

); }