function App() {
  return (
    <AppProviders>
      <Navbar />
      <Hero />
      <HowItWorks />
      <TeamSection />
      <IndustriesSection />
      <WhySection />
      <DemoSection />
      <FaqSection />
      <Footer />
    </AppProviders>
  );
}

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