/* global React, ReactDOM, Nav, HomeHero, Marquee, Problem, HowItWorks, Guardrails, UseCases, AgenticApi, Integrations, Pricing, FinalCTA, Footer */

function Site() {
  return (
    <>
      <Nav/>
      <HomeHero/>
      <Marquee/>
      <Problem/>
      <HowItWorks/>
      <Guardrails/>
      <AgenticApi/>
      <UseCases/>
      <Integrations/>
      <Pricing/>
      <FinalCTA/>
      <Footer/>
    </>
  );
}

ReactDOM.createRoot(document.getElementById("root")).render(<Site/>);
