// app.jsx — renders the Forest & Lime landing in full, with scroll animations.

function App() {
  return <VariantForest mode="desktop" />;
}

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