export interface FeaturedData {
  featuredCourses: CoursePreview[];
  instructors: Instructor[];
  stats: StatItem[];
}

export interface CoursePreview {
  id?: string;
  title: string;
  instructor: string;
  image: string;
  price: number;
  originalPrice?: number;
  rating: number;
  students: number;
  duration?: string;
  level?: 'Beginner' | 'Intermediate' | 'Advanced';
  category?: string;
  description?: string;
}

export interface Instructor {
  id?: string;
  name: string;
  expertise: string;
  rating: string;
  students: string;
}

export interface StatItem {
  icon: string | any;
  label: string;
  value: string;
}
