+ {/* Left Sidebar - User Profile */}
+
+ {/* Profile Card */}
+
+
+
+
+

+
+
+
+
{user.name}
+
{user.role}
+
+ Level {user.level}
+
+
+
+ {/* XP Progress */}
+
+
+ XP Progress
+ {user.xp} / {user.nextLevelXp}
+
+
+
+
+
+
+
+ {/* Quick Actions */}
+
+
+ Quick Actions
+
+
+ {quickActions.map((action, index) => {
+ const Icon = action.icon;
+ return (
+
+ );
+ })}
+
+
+
+
+ {/* Main Content */}
+
+ {/* Stats Grid */}
+
+ {stats.map((stat, index) => {
+ const Icon = stat.icon;
+ return (
+
+
+
+
+
{stat.label}
+
{stat.value}
+
+
+
+
+
+
+
+ );
+ })}
+
+
+ {/* Recent Projects */}
+
+
+
+
+ Recent Projects
+ Your active development projects
+
+
+
+
+
+ {recentProjects.map((project, index) => (
+
+
+
+
+
+
+
{project.name}
+
+ Due {project.dueDate} • {project.team} team members
+
+
+
+
+
+
{project.progress}%
+
+
+
+ {project.priority}
+
+
+
+
+ ))}
+
+
+
+ {/* Achievements */}
+
+
+ Achievements
+ Your progress and accomplishments
+
+
+
+ {achievements.map((achievement, index) => {
+ const Icon = achievement.icon;
+ return (
+
+
+
+
+
+
+
+ {achievement.title}
+
+
+ {achievement.description}
+
+
+ {achievement.earned && (
+
+ )}
+
+
+ );
+ })}
+
+
+
+
+