+ {/* Header with Avatar and Name */}
+
+ {/* Background gradient */}
+
+
+ {/* Content */}
+
+
+ {/* Avatar */}
+
+
+ {/* Name, Bio, and Button */}
+
+
+
+
+ {userData.first_name} {userData.last_name}
+
+ {userData.username && (
+
+ @{userData.username}
+
+ )}
+
+
+
+ {userData.bio && (
+
+ {userData.bio}
+
+ )}
+
+
+
+
+
+ {/* Details */}
+ {userData.details && Object.values(userData.details).length > 0 && (
+
+ {Object.values(userData.details).map((detail) => (
+
+
+
+ {detail.label}
+ {detail.text}
+
+
+ ))}
+
+ )}
+
+