// app.jsx — production render: clean landing, no design canvas, no tweaks chrome.
// English-first; Turkish + other locales swap via i18n at runtime (script.js, later).

function App() {
  const tw = window.__RUU_DEFAULTS || {
    accent: '#c6f24e',
    heroVariant: 'alt',
    animations: 'intense',
    dark: false,
    compareStyle: 'rows',
  };
  return (
    <LangProvider>
      <VariantC tweaks={tw} />
      <CookieBanner />
    </LangProvider>
  );
}

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