--- interface Props { node: { _key?: string; headline?: string; testimonials: Array<{ quote: string; author: string; role?: string; company?: string; }>; }; } const { node } = Astro.props; const { headline, testimonials } = node; --- {headline &&

{headline}

} {testimonials?.map((t) => (

"{t.quote}"

))}