// Mount

function App() {
  return (
    <>
      <FoundingBand />
      <Nav />
      <Hero />
      <PainStrip />
      <ProductSection />
      <FounderSection />
      <PricingSection />
      <CompareSection />
      <MigrationSection />
      <IntegrationsSection />
      <FAQSection />
      <FinalCTA />
      <Footer />
    </>
  );
}

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