// App root. Composes sections.
function App() {
  return (
    <div style={{ position: "relative" }}>
      <Nav />
      <Hero />
      <Interceptor />
      <HowItWorks />
      <HumanInTheLoop />
      <Constraints />
      <Compliance />
      <FinalCTA />
      <Footer />
    </div>
  );
}

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