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