--- // 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) ---

Basic info

Went to: {person.university}
Worked at: {person.company}
Lives in: {person.city}, {person.country}
From: {person.country}
Birth date: {person.birth_date}
Time zone: {person.time_zone}