// app.jsx — main composition

function App() {
  return (
    <React.Fragment>
      <div className="grain" />
      <Nav />
      <Hero />
      <Marquee />
      <Intro />
      <Pain />
      <Solution />
      <Benefits />
      <Offer />
      <Proof />
      <NicollasGallery />
      <Objections />
      <Guarantee />
      <Urgency />
      <FAQ />
      <CtaFinal />
      <Footer />
    </React.Fragment>
  );
}

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