/* SectionHeader.jsx — official-site layout: [big Flash first char] [eyebrow small top] [rest title large bottom] + horizontal diamond rule below */ const SectionHeader = ({ eyebrow, title }) => { const first = title ? title[0] : ""; const rest = title ? title.slice(1) : ""; return (
{first}
{eyebrow} {rest}
); }; window.SectionHeader = SectionHeader;