'use client';
export default function NotificationBell({count}) {
return (
<button className="notification-bell" aria-label="Notifications">
<span className="bell-icon">🔔</span>
{count > 0 && <span className="notification-badge">{count}</span>}
</button>
);
}