--- import Paragraph from "@/components/Paragraph.astro"; import Link from "@/components/Link.astro"; import { Image } from "astro:assets"; type Props = { name: string; links: { text: string; url: string }[]; image: { src: ImageMetadata; alt: string }; reverse?: boolean; }; const props: Props = Astro.props; ---
{props.image.alt}

{props.name}

{ props.links.map(({ text, url }) => ( {text} )) }