'use client'; import { motion } from 'framer-motion'; import { cn } from '@/lib/utils'; type Props = { eyebrow: string; title: string; sub?: string; align?: 'center' | 'start'; className?: string; }; export function SectionHeader({ eyebrow, title, sub, align = 'start', className, }: Props) { const isCenter = align === 'center'; return ( {eyebrow}

{title}

{sub && (

{sub}

)}
); }