export const coursedFilterOptions = {
  topic: [
    { value: 'credit-basics', label: 'Credit Basics', total: 5 },
    { value: 'credit-repair', label: 'Credit Repair', total: 8 },
    { value: 'credit-monitoring', label: 'Credit Monitoring', total: 3 },
    { value: 'debt-management', label: 'Debt Management', total: 6 },
  ],
  difficulty: [
    { value: 'beginner', label: 'Beginner', total: 10 },
    { value: 'intermediate', label: 'Intermediate', total: 7 },
    { value: 'advanced', label: 'Advanced', total: 2 },
  ],
  duration: [
    { value: 'short', label: 'Short (0-30 min)', total: 12 },
    { value: 'medium', label: 'Medium (30-60 min)', total: 5 },
    { value: 'long', label: 'Long (60+ min)', total: 2 },
  ],
  completion: [
    { value: 'completed', label: 'Completed', total: 3 },
    { value: 'in-progress', label: 'In Progress', total: 2 },
    { value: 'not-started', label: 'Not Started', total: 14 },
  ],
};