/* eslint-disable react/no-unescaped-entities */
/* ============================================================
   App — Ape × Uber Pitch
   Composes all sections in order.
   ============================================================ */

function App() {
  return (
    <React.Fragment>
      <Nav />
      <main>
        <Hero />
        <Problem />
        <Insight />
        <Sustainability />
        <Solution />
        <ABTesting />
        <MathSection />
        <AnchorNetwork />
        <Scope />
        <JourneyEngine />
        <ExperienceIt />
        <Offer />
        <Guarantees />
        <Compliance />
        <Lever />
        <Contact />
      </main>
      <Foot />
    </React.Fragment>
  );
}

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
