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

{title}

} { links && links.map((link) => ( {link.label} )) }