import { motion } from 'motion/react'; export const SectionHeading = ({ eyebrow, title, subtitle }: { eyebrow: string; title: string; subtitle?: string }) => (
{eyebrow}

{title}

{subtitle &&

{subtitle}

}
);