Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/components/common/CreatorProfileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ const CreatorProfileHeader: React.FC<CreatorProfileHeaderProps> = ({
<div className="size-24 overflow-hidden rounded-2xl border-4 border-white/10 shadow-xl md:size-32">
<CreatorInitialsAvatar name={name} creatorId={creatorId} imageSrc={avatarUrl} />
</div>
<div className="space-y-1">
<div className="flex items-center gap-2">
<h1 className="font-grotesque text-3xl font-black tracking-tight text-white md:text-4xl">
<div className="min-w-0 space-y-1">
<div className="flex items-center gap-2 overflow-hidden">
<h1 className="truncate font-grotesque text-3xl font-black tracking-tight text-white md:text-4xl">
{name}
</h1>
{isVerified && <VerifiedBadge verified={true} />}
{isVerified && <div className="shrink-0"><VerifiedBadge verified={true} /></div>}
</div>
<p className="font-jakarta text-lg text-white/50">@{handle}</p>
<p className="truncate font-jakarta text-lg text-white/50">@{handle}</p>
<CreatorBio bio={bio} variant="profile" className="mt-2 max-w-md" />
</div>
</div>
Expand Down
Loading