// Bellia — Dashboard (variante B : nav pill flottante + hero CA orange + KPI grid)
const ALERTS = [
{ kind: 'err', agent: 'Comptabilité', t: 'Food cost en dérive : 32 % vs cible 28 %', age: 'il y a 2 h' },
{ kind: 'warn', agent: 'Fournisseurs', t: '4 factures Métro à valider avant vendredi', age: 'il y a 5 h' },
{ kind: 'warn', agent: 'Planning', t: 'Le planning S+1 n\'est pas encore publié', age: 'hier' },
{ kind: 'ok', agent: 'TVA', t: 'La TVA d\'avril est prête à exporter', age: 'hier' },
];
const RECENT = [
{ who: 'Marc D.', what: 'a clôturé le ticket Z', when: 'il y a 12 min', a: 'MD', c: C.orangeDp },
{ who: 'Aline L.', what: 'a saisi la facture Métro #4218', when: 'il y a 1 h', a: 'AL', c: C.warn },
{ who: 'Bellia IA', what: 'a généré le rapport hebdo', when: 'ce matin', a: 'b', c: C.orange },
{ who: 'Théo R.', what: 'a publié le planning S+0', when: 'hier 18:30', a: 'TR', c: C.ok },
];
const DashboardScreen = ({ onNav }) => {
const [period, setPeriod] = React.useState('mois');
const todayCA = 4280;
return (