/* app.jsx — assembly + mount. Light theme only; Light & airy hero. */

function App() {
  useReveal();
  return (
    <div id="top">
      <Nav />
      <main>
        <HeroLight />
        <Problem />
        <HowItWorks />
        <Features />
        <Demo />
        <FAQ />
        <FinalCTA />
      </main>
      <Footer />
    </div>
  );
}

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