/* App — mounts all sections */

function App() {
  return (
    <React.Fragment>
      <Nav/>
      <Hero/>
      <Mission/>
      <Playground/>
      <Pillars/>
      {/* ── THE MARKET ── */}
      <Economics/>
      <Assets/>
      <TokenDemand/>
      <Archetypes/>
      <TimeBoxedLiquidity/>
      {/* ── THE ENGINE ── */}
      <Runtime/>
      <Footer/>
    </React.Fragment>
  );
}

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