function App() {
  return (
    <>
      <ContactModal />
      <Header />
      <main>
        <Hero />
        <ProblemSection />
        <DifferentSection />
        <FeaturesSection />
        <HowSection />
        <MobileSection />
        <CtaIntermediate />
        <CtaFinal />
        <PricingSection />
      </main>
      <Footer />
    </>
  );
}

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