// "Our Story" page — reuses the home Story + Quote sections under a page hero.
function PageOurStory() {
  const { PageHero, Story, Founder, Quote, CTASection } = window.JMK;
  return (
    <React.Fragment>
      <PageHero eyebrow="Since 2015" title="Our Story" tagline="Harmonising art and data to craft visually stunning masterpieces — and to unlock creativity at scale." />
      <Story />
      <Founder />
      <Quote />
      <CTASection title="Ready to write the next chapter together?" />
    </React.Fragment>
  );
}
window.JMK = window.JMK || {};
window.JMK.PageOurStory = PageOurStory;
