export const DEFAULT_BUSINESS_TYPES: Array<{
  label: string;
  imageUrl: string;
}> = [
  {
    label: 'Restaurant / Cafe',
    imageUrl:
      'https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Grocery / Supermarket',
    imageUrl:
      'https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Fashion / Apparel',
    imageUrl:
      'https://images.unsplash.com/photo-1520975682031-a4c35d1b4f87?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Salon / Spa',
    imageUrl:
      'https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Electronics',
    imageUrl:
      'https://images.unsplash.com/photo-1510557880182-3f8fdc6dbf44?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Pharmacy',
    imageUrl:
      'https://images.unsplash.com/photo-1580281657527-47f249e8f1ad?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Gym / Fitness',
    imageUrl:
      'https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=800&q=60',
  },
  {
    label: 'Bakery / Sweets',
    imageUrl:
      'https://images.unsplash.com/photo-1509440159598-8b9b6a74fcb0?auto=format&fit=crop&w=800&q=60',
  },
];
