// App root — composes the marketing page. Tweaks panel from the design
// tool was dev-only; in production we ship with the chosen defaults.

function App() {
  return (
    <>
      <Nav />
      <Hero glowIntensity={100} showSecondary={true} />
      <VideoBlock />
      <Problem />
      <HowItWorks />
      <Features />
      <Pricing />
      <FinalCta />
      <Footer />
    </>
  );
}

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