import Image from "next/image"; type CardProps = { imageSrc: string; title: string; subtitle: string; content: string; }; export default function Card({ imageSrc, title, subtitle, content, }: CardProps) { return ( {`Image {subtitle} {title} {content} ); }