From f9584cae3c3785c9648d2b554a0ed7ce7c11e3c8 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Tue, 27 May 2025 02:51:30 +0100 Subject: [PATCH] User progress component --- .../RoadmapAIChat/UserProgressList.tsx | 37 ++++++++++++++----- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/src/components/RoadmapAIChat/UserProgressList.tsx b/src/components/RoadmapAIChat/UserProgressList.tsx index 410c4046f..2b0b1c287 100644 --- a/src/components/RoadmapAIChat/UserProgressList.tsx +++ b/src/components/RoadmapAIChat/UserProgressList.tsx @@ -23,19 +23,36 @@ export function UserProgressList(props: UserProgressListProps) { const progressPercentage = getPercentage(totalFinished, totalTopicCount); return ( -
-
-
-
+
+
+
+ Progress + + {progressPercentage}% +
- - - {totalFinished} / {totalTopicCount} + + {totalFinished} / {totalTopicCount} topics
+ +
+
+
+ +
+
+
+ Completed: {doneCount} +
+
+
+ Skipped: {skippedCount} +
+
); }