// app.jsx — public advert version. Single palette, no tweaks panel.

function App() {
  const palette = PALETTES.crayon;

  React.useEffect(() => {
    applyPaletteVars(document.documentElement, palette);
    document.body.style.background = palette.bg;
  }, [palette]);

  return <DesignA palette={palette} />;
}

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