--- import Card from "./Card.astro"; export interface Props { title: string; src: string; } const { title, src } = Astro.props; ---