// App.jsx — homepage composition.
function App() {
  React.useEffect(() => {
    document.body.dataset.accent = 'lime';
  }, []);

  return (
    <div className="page">
      <Nav />
      <Hero />
      <Offerings />
      <BuiltBy />
      <Mission />
      <CtaPanel />
      <Footer />
    </div>);

}

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