interface CardProps { title: string; image: string; text: string; } function Card({ title, image, text }: CardProps) { return ( <>
{title}
{title}

{text}

); } export default Card;