// /procedures hub — app entry
const ProceduresApp = () => {
  return (
    <>
      <SiteHeader active="procedures" />
      <main>
        <ProceduresHero />
        <CategoryLap />
        <CategoryEndo />
        <SplitComparison />
        <CTASection />
      </main>
      <SiteFooter />
    </>
  );
};
ReactDOM.createRoot(document.getElementById('root')).render(<ProceduresApp />);
