--- import type { FindItem } from '../lib/find-items'; import FindCard from './FindCard.astro'; interface Props { items: FindItem[]; } const { items } = Astro.props; ---