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

{title}

{description}

) } export default memo(SectionHeader)