'use client' import { memo } from 'react' type SectionHeaderProps = { title: string description: string className?: string } const SectionHeader = ({ title, description, className, }: SectionHeaderProps) => { return (

{title}

{description}

) } export default memo(SectionHeader)