feat: Add instructor course management pages for creating, listing, and viewing course details.

This commit is contained in:
Missez 2026-01-26 09:53:49 +07:00
parent 69eb60f901
commit af7890cc8f
7 changed files with 229 additions and 28 deletions

View file

@ -230,7 +230,7 @@ const fetchCourse = async () => {
const getStatusColor = (status: string) => {
const colors: Record<string, string> = {
APPROVED: 'green',
PENDING: 'yellow',
PENDING: 'orange',
DRAFT: 'grey',
REJECTED: 'red'
};