// Civic Modern — Home / Overview page.
// Keeps: cover, principles (foundations), and the applied resident dashboard.

function HomePage() {
  return (
    <Shell current="home">
      <CoverSection />
      <PrinciplesSection />
      <div id="dashboard" />
      <ResidentDashboardSection />
      <PageFooter />
    </Shell>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<HomePage />);
