From 7c85a7835b9f501d934e4f089c055dcfeaf84588 Mon Sep 17 00:00:00 2001 From: dmitriylaukhin Date: Thu, 4 Jun 2026 10:32:30 +0500 Subject: [PATCH] Widen dashboard course cards and enlarge title/description text --- src/app/(student)/dashboard/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/(student)/dashboard/page.tsx b/src/app/(student)/dashboard/page.tsx index fd54f9d..3ab11ed 100644 --- a/src/app/(student)/dashboard/page.tsx +++ b/src/app/(student)/dashboard/page.tsx @@ -45,7 +45,7 @@ export default async function StudentDashboard() { const completedSet = new Set(progressRecords.map((p) => p.lessonId)); return ( -
+

Мои курсы

{active.length} активных курсов @@ -85,9 +85,9 @@ export default async function StudentDashboard() { )}

-

{course.title}

+

{course.title}

{course.description && ( -

+

{course.description}

)}