- Level {stats.level} / {stats.tier} / {district.name}
-
+
+ {/* Stats Grid */}
+
+
+
+ Reputation
+ {repScore}
+
+
+
+
+ Tasks Done
+ {tasksCompleted}
+
+
+
+
+ Uptime
+ {uptime}
+
+
+
+
+ Infractions
+ {infractions}
+
+
+
+
+ {/* Capabilities */}
+
+
+ Capabilities
+
+
+
+ {capabilities.length > 0 ? capabilities.map((cap, i) => (
+
+ {cap}
+
+ )) : (
+ No capabilities registered
+ )}
+
+
+
+
+ {/* Badges */}
+
+
+ Earned Badges
+
+
+
+ {badges.length > 0 ? badges.map((badge, i) => (
+
+ {badge.name}
+
+ )) : (
+
+ No badges earned yet
+
+ )}
+
+
+
-
-
+ {/* Active Quests (Sidebar) */}
+
+
Active Quests
+ {quests.length > 0 ? quests.slice(0, 3).map((quest, i) => (
+
+
+
+ {quest.title}
+ {quest.description}
+
+
+
+ {quest.progress || 0}%
+ +{quest.reward?.xp || 0} XP
+
+
+
+ )) : (
+
+
+ No active quests
+
+
+ )}
+
+