From 65aeb724a3207a1ca5785b087e08608b2bf63a27 Mon Sep 17 00:00:00 2001 From: lemon Date: Sat, 20 Jun 2026 22:49:26 -0700 Subject: [PATCH] Move profile stats above bio --- .../profile/ProfileIdentityRail.tsx | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/components/profile/ProfileIdentityRail.tsx b/src/components/profile/ProfileIdentityRail.tsx index 6ede300b..795a7eb1 100644 --- a/src/components/profile/ProfileIdentityRail.tsx +++ b/src/components/profile/ProfileIdentityRail.tsx @@ -294,7 +294,7 @@ export function ProfileIdentityHeader({ }: ProfileIdentityHeaderProps) { return (
- {/* Identity: name + NIP-05 + website + bio */} + {/* Identity: name + NIP-05 + website + stats + bio */}

{metadataEvent ? ( @@ -317,6 +317,16 @@ export function ProfileIdentityHeader({

)} + {/* Stats: Raised + Followers + Following on a single inline row. */} + {metadata?.about && (

{metadata.about} @@ -341,17 +351,6 @@ export function ProfileIdentityHeader({ onDonate={onDonate} /> )} - - {/* Stats: Raised + Followers + Following on a single inline row. */} -

); }