import { useNostrAuth } from '@/hooks/useNostrAuth' export function KeyIndicator() { const { pubkey, isUnlocked } = useNostrAuth() // Red if private key is accessible (unlocked) // Green if only public key is accessible (connected but not unlocked) const color = isUnlocked ? 'text-red-500' : 'text-green-500' const title = isUnlocked ? 'Private key accessible' : pubkey ? 'Public key accessible' : 'Repository Git' return ( e.stopPropagation()} > 🔑 ) }