--- interface Props { prefix: string; kicker: string; title: string; intro: string; moreParagraphs?: string[]; introMaxWidth?: string; followIntroMaxWidth?: string; moreMaxHeight?: string; } const { prefix, kicker, title, intro, moreParagraphs = [], introMaxWidth = "70ch", followIntroMaxWidth = "62ch", moreMaxHeight = "18rem", } = Astro.props; ---

{kicker}

{title}

{intro}

{moreParagraphs.length > 0 && (
{moreParagraphs.map((paragraph) => (

{paragraph}

))}
)}