import { useNotifications } from '@/hooks/useNotifications' interface NotificationBadgeProps { userPubkey: string | null onClick?: () => void } export function NotificationBadge({ userPubkey, onClick }: NotificationBadgeProps) { const { unreadCount } = useNotifications(userPubkey) if (!userPubkey || unreadCount === 0) { return null } return ( ) }