// app.jsx, compose the Polaris home page from the shared sections.
// Brand tokens are baked into styles.css; forms post through leads.js.

function App() {
  useReveal();
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <WhatWeDo />
      <Stats />
      <Reviews />
      <Timeline />
      <PropertyPlan />
      <Footer />
    </React.Fragment>
  );
}
ReactDOM.createRoot(document.getElementById("root")).render(<App />);
