// Main app
const { useState, useEffect } = React;

function App() {
  const [tweaks, setTweak] = useTweaks(window.TWEAK_DEFAULTS);

  useCustomCursor();
  useReveal();

  return (
    <>
      <Nav />
      <Hero variant={tweaks.heroVariant} />
      <Manifiesto />
      <Fuerzas />
      <Servicios variant={tweaks.servicesVariant} />
      <Metodologia />
      <Casos />
      <Testimonios />
      <Contacto />
      <Footer />
      <CuartoTweaks tweaks={tweaks} setTweak={setTweak} />
      <WhatsApp />
    </>
  );
}

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