--- import Icon from './Icon.astro' import Avatar from './Avatar.astro' import people from '@data/people.json' interface Props { show?: boolean } const { show } = Astro.props const peopleItems = (people as { id: number | string; full_name: string }[]).slice(0, 3) ---