/* ============================================================ Topbar — cabeçalho com título, sino de notificações e avatar Depende de: IconBell (Icons.jsx) ============================================================ */ function Topbar({ title, sub, notifs, notifOpen, onBellClick, role, branding, avatarInitials }){ const unread = notifs.filter(n=>!n.lido).length; return (

{title}

{sub}
Notificações
{notifs.length===0 &&

Nenhuma notificação.

} {notifs.map(n=>(

{n.text}

{n.time}
))}
{avatarInitials}
); }