--- import type { ImageMetadata } from 'astro'; interface Props { title?: string; image?: ImageMetadata; links?: { label: string; href: string; newWindow?: boolean; }[]; } const { title, image, links } = Astro.props; ---