export interface ProgramCard {
  id: 'basketball' | 'volleyball' | 'jr'
  title: string
  image: string
  imageAlt: string
  badge: string
  ages: string
  location: string
  meta: string
  days: ('on' | 'off' | 'game')[]
  dayLabels: string[]
  priceLabel: string
  price: string
  registerUrl: string
}

export const programCards: ProgramCard[] = [
  {
    id: 'basketball',
    title: 'Season 6 Basketball',
    image: '/images/programs/basketball-s6.webp',
    imageAlt: 'DLEAG Season 6 Basketball',
    badge: 'Now Registering',
    ages: 'Ages 12–15U',
    location: 'Newark Middle School',
    meta: '10-week season · Preseason Aug 10–14',
    days: ['on', 'off', 'on', 'off', 'game'],
    dayLabels: ['M', 'T', 'W', 'T', 'F'],
    priceLabel: 'Early bird registration',
    price: '$420',
    registerUrl: 'https://www.zeffy.com/en-US/ticketing/dleag-season-6-basketball',
  },
  {
    id: 'volleyball',
    title: 'Season 2 Volleyball',
    image: '/images/programs/volleyball-s2.webp',
    imageAlt: 'DLEAG Season 2 Volleyball',
    badge: 'Now Registering',
    ages: 'Ages 12–15U',
    location: 'Newark Middle School',
    meta: '10-week season · Assessments Aug 10–14',
    days: ['on', 'on', 'off', 'game', 'off'],
    dayLabels: ['M', 'T', 'W', 'T', 'F'],
    priceLabel: 'Early bird registration',
    price: '$460',
    registerUrl: 'https://www.zeffy.com/en-US/ticketing/dleag-volleyball-season--2',
  },
  {
    id: 'jr',
    title: 'Jr. DLEAG Basketball',
    image: '/images/programs/jr-dleag.webp',
    imageAlt: 'Jr. DLEAG Basketball',
    badge: 'Ages 8–11',
    ages: 'Ages 8–11U',
    location: 'Newark Silliman Center',
    meta: 'Aug 17 – Oct 26 · Mondays, 4–6 PM',
    days: ['on', 'off', 'off', 'off', 'off'],
    dayLabels: ['M', 'T', 'W', 'T', 'F'],
    priceLabel: 'Early bird $245 · Full season',
    price: '$295',
    registerUrl: 'https://www.zeffy.com/en-US/ticketing/jr-dleag-2',
  },
]
