From 19bbdf1e360201334d3dcea3594428cf0612169c Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 11 Nov 2025 23:21:25 +0000 Subject: [PATCH] completionId: cgen-6c05d4ab6fc64d03ada2da00a20a8cc2 cgen-6c05d4ab6fc64d03ada2da00a20a8cc2 --- client/pages/docs/DocsCurriculumEthos.tsx | 70 +++++++++++++++++------ 1 file changed, 54 insertions(+), 16 deletions(-) diff --git a/client/pages/docs/DocsCurriculumEthos.tsx b/client/pages/docs/DocsCurriculumEthos.tsx index 22f7bdb9..ce34d3cf 100644 --- a/client/pages/docs/DocsCurriculumEthos.tsx +++ b/client/pages/docs/DocsCurriculumEthos.tsx @@ -697,7 +697,7 @@ export default function DocsCurriculumEthos() { {module.lessons.map((lesson, index) => (
@@ -708,25 +708,63 @@ export default function DocsCurriculumEthos() { {lesson.title}
- + {lesson.duration && ( + + {lesson.duration} + + )} + + {lesson.status === "live" + ? "Live" : lesson.status === "draft" - ? "bg-blue-600/50 text-blue-100" - : "bg-gray-600/50 text-gray-100" - } - > - {lesson.status === "live" - ? "Live" - : lesson.status === "draft" - ? "In Progress" - : "Coming Soon"} - + ? "In Progress" + : "Coming Soon"} + +
-

+ +

{lesson.summary}

+ + {lesson.objectives && lesson.objectives.length > 0 && ( +
+

+ Learning Objectives +

+ +
+ )} + + {lesson.exercises && lesson.exercises.length > 0 && ( +
+

+ Practical Exercises +

+

{lesson.exercises.length} hands-on exercises included

+
+ )} ))}