--- import flagSvg from "/src/assets/icons/flag.svg?raw"; import starSvg from "/src/assets/icons/star.svg?raw"; export interface Props { title: string; description: string; badge?: "idea" | "goal"; } const BADGE_ICON = { goal: flagSvg, idea: starSvg, }; const { title, description, badge } = Astro.props; ---

{title}

{ badge && (

{badge}

) }

{description}