// Settings.jsx — Admin settings page function SettingsPage() { const [tab, setTab] = React.useState('company'); const [savedTab, setSavedTab] = React.useState(null); const tabs = [ { id: 'company', label: 'Company', icon: 'Briefcase' }, { id: 'pricing', label: 'Pricing & Surcharges', icon: 'DollarSign' }, { id: 'integrations', label: 'Integrations', icon: 'Settings' }, { id: 'security', label: 'Security', icon: 'Shield' }, ]; const flagSaved = (k) => { setSavedTab(k); setTimeout(() => setSavedTab(null), 1800); }; return (