// whetstone-site.jsx
// Mounts the Manifesto site. All design values (color, type, density)
// are baked into Whetstone.html as :root CSS variables.

function App() {
  return (
    <div style={{ minHeight: '100vh', background: 'var(--bg)' }}>
      <Manifesto />
    </div>
  );
}

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