// "Our Expertise" — dedicated page. Reuses the Expertise section (heading
// suppressed, since the page hero carries the title) + a CTA.
function PageExpertise() {
  const { PageHero, Expertise, CTASection } = window.JMK;
  return (
    <React.Fragment>
      <PageHero
        eyebrow="What we do"
        title="Our Expertise"
        tagline="Expertise… the compass of proficiency. Six disciplines, one studio — here's exactly what each one does for you."
      />
      <Expertise bare />
      <CTASection title="Which of these does your brand need?" />
    </React.Fragment>
  );
}
window.JMK = window.JMK || {};
window.JMK.PageExpertise = PageExpertise;
