function App() {
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <Origin />
      <Pain />
      <Sales />
      <Delivery />
      <AICoach />
      <Analytics />
      <Workflow />
      <Testimonials />
      <Pricing />
      <FinalCTA />
      <Footer />
    </React.Fragment>
  );
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
