--- import { Card } from '@eliancodes/brutal-ui'; import { Image } from 'astro:assets'; interface Props { title: string; imgSrc: string | null; imgAlt: string; description: string; } const { title, imgAlt, imgSrc, description } = Astro.props; ---
{imgSrc && ({imgAlt})}

{title}

{description}