// Static landing page root for the public Astro site.
function App() {
  return (
    <React.Fragment>
      <div style={{ background: 'var(--bl-canvas)' }}>
        <TopNav />
      </div>
      <Hero
        density="balanced"
        dashboardSize="cropped"
        dashboardSlotFilled={false}
      />
      <FlowSection />
      <PillarsSection />
      <ClosingSection />
      <Footer />
    </React.Fragment>
  );
}

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