import { useFetchProfile } from '@/hooks' import FollowButton from '../FollowButton' import Nip05 from '../Nip05' import ProfileAbout from '../ProfileAbout' import { SimpleUserAvatar } from '../UserAvatar' export default function ProfileCard({ pubkey }: { pubkey: string }) { const { profile } = useFetchProfile(pubkey) const { username, nip05, about } = profile || {} return (