|
|
|
@ -11,7 +11,11 @@ export default function UserItem({ pubkey }: { pubkey: string }) { |
|
|
|
<div className="flex gap-2 items-start"> |
|
|
|
<div className="flex gap-2 items-start"> |
|
|
|
<UserAvatar userId={pubkey} className="shrink-0" /> |
|
|
|
<UserAvatar userId={pubkey} className="shrink-0" /> |
|
|
|
<div className="w-full overflow-hidden"> |
|
|
|
<div className="w-full overflow-hidden"> |
|
|
|
<Username userId={pubkey} className="font-semibold truncate" skeletonClassName="h-4" /> |
|
|
|
<Username |
|
|
|
|
|
|
|
userId={pubkey} |
|
|
|
|
|
|
|
className="font-semibold truncate max-w-full w-fit" |
|
|
|
|
|
|
|
skeletonClassName="h-4" |
|
|
|
|
|
|
|
/> |
|
|
|
<Nip05 pubkey={pubkey} /> |
|
|
|
<Nip05 pubkey={pubkey} /> |
|
|
|
<div className="truncate text-muted-foreground text-sm">{profile?.about}</div> |
|
|
|
<div className="truncate text-muted-foreground text-sm">{profile?.about}</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|