BigBlocks

Profile Card

Display BAP identity profile with avatar, name, bio, and identity key

Installation

bunx shadcn@latest add https://registry.bigblocks.dev/r/profile-card.json

Usage

import { ProfileCard } from "@/components/blocks/profile-card"
 
export function Example() {
  return (
    <ProfileCard
      bapId="Go8vCHAa4S6AhXKdRp3nT9wJm"
      onFollow={(bapId) => console.log("Follow", bapId)}
    />
  )
}