"use client"

/** Hero JSON for a locale: virtual tour URL + gallery. `heroStats` is legacy and always stored empty. */
export interface HeroStat {
  icon: string
  label: string
  value: string
}

export interface HospitalHeroData {
  virtualTourUrl: string
  heroStats: HeroStat[]
  galleryImages: { image: string; imagePublicId: string }[]
}
