feat: Introduce admin pages for pending course review and course details, and instructor pages for course management and lesson quizzes.
All checks were successful
Build and Deploy Frontend Management to Dev Server / Build Frontend Management Docker Image (push) Successful in 33s
Build and Deploy Frontend Management to Dev Server / Deploy E-learning Frontend Management to Dev Server (push) Successful in 2s
Build and Deploy Frontend Management to Dev Server / Notify Deployment Status (push) Successful in 1s

This commit is contained in:
Missez 2026-02-10 15:24:19 +07:00
parent ff91df2bd6
commit 941b195813
6 changed files with 388 additions and 27 deletions

View file

@ -323,7 +323,7 @@ const getLessonIcon = (type: string) => {
const getLessonTypeColor = (type: string) => {
const colors: Record<string, string> = {
VIDEO: 'blue',
QUIZ: 'purple',
QUIZ: 'orange',
DOCUMENT: 'teal'
};
return colors[type] || 'grey';