--- // person = people[person-id - 1] (default person-id = 25 → people[24]). import Icon from '@ui/Icon.astro' import Flag from '@ui/Flag.astro' import people from '@data/people.json' import { requireIndex } from '@shared/lib/array' interface Person { university?: string company?: string city?: string country?: string country_code?: string birth_date?: string time_zone?: string [key: string]: unknown } const person = requireIndex(people as Person[], 24) ---