function App() {
  const [t, setTweak] = useTweaks(TWEAK_DEFAULTS);
  return (
    <>
      <Nav />
      <main>
        <Hero heroStyle={t.heroStyle} />
        <Pains />
        <Services />
        <HowItWorks />
        <Why />
        <Testimonials />
        <FAQ />
        <Area />
        <ContactForm />
      </main>
      <Footer />
      <WhatsAppFloat />
      <TweaksRoot t={t} setTweak={setTweak} />
    </>
  );
}

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