// "Our Awards" — dedicated page. Reuses the Awards marquee (heading suppressed,
// since the page hero carries the title) + a CTA.
function PageAwards() {
  const { PageHero, Awards, CTASection } = window.JMK;
  return (
    <React.Fragment>
      <PageHero
        eyebrow="Recognition"
        title="Our Awards"
        tagline="We'd rest on our laurels — but they won't sit still."
      />
      <Awards bare />
      <CTASection title="Let's make something award-worthy." />
    </React.Fragment>
  );
}
window.JMK = window.JMK || {};
window.JMK.PageAwards = PageAwards;
