export interface UserProgress {
    id: string;
    title: string;
    progress: number;
    lessons: number;
    completed: number;
    trainer: string;
}

export interface Order {
    id: string;
    course: string;
    price: number;
    status: string;
    date: string;
}

export interface TrainerCourse {
    id: string;
    title: string;
    price: number;
    enrollments: number;
    rating: number;
    status: string;
}

export interface Payout {
    id: string;
    amount: number;
    method: string;
    period: string;
    status: string;
}

export interface Student{
    name: string;
    course: string;
    progress: number;
    last: string;
}

export const userProgress: UserProgress[] = [
    { id: "nxjs-101", title: "Next.js Fundamentals", progress: 62, lessons: 24, completed: 15, trainer: "Sara Ali" },
    { id: "ux-wire", title: "UX Wireframing", progress: 100, lessons: 12, completed: 12, trainer: "Mark Chen" },
    { id: "sql-pro", title: "SQL for Analysts", progress: 35, lessons: 30, completed: 10, trainer: "Noor Hassan" },
];

export const orders: Order[] = [
    { id: "ORD-34812", course: "Next.js Fundamentals", price: 179, status: "Paid", date: "2025-09-05" },
    { id: "ORD-34866", course: "UX Wireframing", price: 129, status: "Paid", date: "2025-09-10" },
    { id: "ORD-34901", course: "SQL for Analysts", price: 149, status: "Refunded", date: "2025-09-12" },
];

export const trainerCourses: TrainerCourse[] = [
    { id: "vue-zero", title: "Vue from Zero", price: 129, enrollments: 412, rating: 4.6, status: "Published" },
    { id: "py-boot", title: "Python Bootcamp", price: 179, enrollments: 863, rating: 4.8, status: "Published" },
    { id: "seo-2025", title: "SEO 2025", price: 149, enrollments: 205, rating: 4.4, status: "Draft" },
];

export const payouts: Payout[] = [
    { id: "PAYOUT-1021", amount: 3240.75, method: "Bank Transfer", period: "Aug 2025", status: "Paid" },
    { id: "PAYOUT-1022", amount: 2988.10, method: "Bank Transfer", period: "Sep 2025", status: "Processing" },
];

export const students: Student[] = [
    { name: "Lina Saeed", course: "Python Bootcamp", progress: 78, last: "2h" },
    { name: "Omar T.", course: "Vue from Zero", progress: 22, last: "1d" },
];