--- 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}
{intro}
{moreParagraphs.length > 0 && ({paragraph}
))}