import {motion} from 'framer-motion'; import React from 'react'; export function SectionHeader({ number, label, title, titleAccent, subtitle, }: { number: string; label: string; title: string; titleAccent?: string; subtitle?: string; }) { return (
ยง {number} {label}

{title} {titleAccent && <> {titleAccent}}

{subtitle &&

{subtitle}

}
); }