// Nav.jsx — top navigation bar with wordmark + book-a-call pill function Nav() { return ( ); } // SectionHeader — the eyebrow ▸ + title + sub trio used before every section function SectionHeader({ label, title, sub, id, center }) { return (

▸  {label}

{title}

{sub &&

{sub}

}
); } window.Nav = Nav; window.SectionHeader = SectionHeader;