/* global React, ReactDOM */
// App composer — assembles the redesigned Ajaia Enterprise AI Training page.

const { useEffect: useEffectApp } = React;

function App() {
  useReveal(); // mount scroll-reveal observer

  return (
    <>
      <AjNav />
      <main>
        <Hero />
        <StatsBandSection />
        <AnchorBar />
        <GoldStandardSection />
        <ProblemSection />
        <SolutionSection />
        <IncludedSection />
        <MethodSection />
        <EngagementsSection />
        <ProofSection />
        <FAQSection />
        <RelatedSection />
        <FinalCTASection />
      </main>
      <AjFooter />
    </>
  );
}

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