+
+
+ {profile.name ?? profile.login}
+
+
+ @{profile.login}
+ ·
+
+ Joined{" "}
+ {new Date(profile.createdAt).toLocaleDateString("en-US", {
+ month: "long",
+ year: "numeric",
+ })}
+
+
+
+
+ {profile.bio && (
+
{profile.bio}
+ )}
+
+ {/* Metadata row */}
+
+
+ {/* Followers / Following */}
+
+
+ {/* Pinned Repos */}
+ {pinnedRepos && pinnedRepos.length > 0 && (
+
+
+ Pinned
+
+
+ {pinnedRepos.map((repo) => (
+
+ ))}
+
+
+ )}
+
+ {/* Activity */}
+ {activity && activity.length > 0 && (
+
+
+
Recent activity
+
+ {activity.length}
+
+
+
+ {activityQuery.hasNextPage && (
+
+ )}
+
+ )}
+