--- interface Props { id: string; title: string; count?: string; intro?: string; final?: boolean; className?: string; } const { id, title, count, intro, final = false, className, } = Astro.props; ---

{title}

{count && {count}}
{intro &&

{intro}

}