import { cn } from 'ui' export interface SectionHeaderProps { title: string description: string className?: string } const SectionHeader = ({ title, description, className }: SectionHeaderProps) => { return (

{title}

{description}

) } export default SectionHeader