export interface Technology {
  label: string
  title: string
  image: string
  link: string
  target: string
  name: string
  description?: string
  free: string | null
}
