import React from 'react' interface UserProfileHeaderProps { displayName: string displayPubkey: string picture?: string nip05?: string } export function UserProfileHeader({ displayName, displayPubkey, picture, nip05, }: UserProfileHeaderProps) { return (
{picture ? ( {displayName} ) : (
{displayName.charAt(0).toUpperCase()}
)}

{displayName}

{displayPubkey}

{nip05 &&

{nip05}

}
) }