/* global React, ReactDOM, Navbar, Hero, ProblemsSection, ServicesSection, ProcessSection, ProofSection, UrgencySection, BookingSection, Footer, useReveal */
const { useEffect: useEffApp } = React;

function App() {
  useReveal();
  return (
    <>
      <Navbar />
      <Hero />
      <ProblemsSection />
      <ServicesSection />
      <ROICalculator />
      <ProcessSection />
      <StackSection />
      <ProofSection />
      <FAQSection />
      <BookingSection />
      <Footer />
      <StickyCTA />
      <VivoTweaks />
    </>
  );
}

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