// Root composition
const App = () => (
  <div>
    <Nav />
    <Hero />
    <PainPoint />
    <Features />
    <InteractiveDemo />
    <WhyQlivo />
    <FinalCTA />
    <Footer />
  </div>
);

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