// Misiowa Akademia v4 — assembly
const { useState: useAppV4 } = React;

function App() {
  const [menu, setMenu] = useAppV4(false);
  return (
    <>
      <Nav onMenu={() => setMenu(true)} />
      <MobileMenu open={menu} onClose={() => setMenu(false)} />
      <Sticky />
      <Hero />
      <TrustStrip />
      <Why />
      <Zones />
      <Offer />
      <Pricing />
      <Gallery />
      <Kadra />
      <Testimonials />
      <Faq />
      <Contact />
      <Footer />
    </>
  );
}

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