// Standalone entry for the Customer Mobile App.
// Renders CustomerApp directly — full-screen on phones, centered phone-frame on desktop.

function CustomerStandalone() {
  return (
    <I18nProvider>
      <div className="customer-stage">
        <div className="customer-frame">
          <CustomerApp initialScreen="auth-landing" />
        </div>
      </div>
    </I18nProvider>
  );
}

Object.assign(window, { CustomerStandalone });

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