// Prodz — Notifications / Activity overlay (opened from the top-bar bell). // Reuses the NETWORK_ACTIVITY feed: people you follow + what they just did. function NotificationsScreen() { const { L } = useL(); const nav = useNav(); const tweaks = useHomeTweaks(); const followReqs = (tweaks && tweaks.followReqs) || 'network'; const { Avatar } = window.ProdzDesignSystem_d0b87b; const iconFor = { production: 'Clapperboard', thread: 'MessagesSquare', jobcall: 'Megaphone', comment: 'MessageCircle' }; const tintFor = { production: 'var(--prodz-teal)', thread: 'var(--prodz-gold)', jobcall: 'var(--prodz-teal)', comment: 'var(--text-muted)' }; return (

{L('Aggiornamenti dalle persone che segui.', 'Updates from people you follow.')}

{followReqs === 'notifications' && (
)}
{NETWORK_ACTIVITY.map((a, i) => { const p = PEOPLE[a.person] || { name: a.person, avatar: null, ring: 'none' }; const fresh = i < 2; return ( ); })}
); } Object.assign(window, { NotificationsScreen });