import Image from "@/components/Image" import Card from ".." import styles from "./cardImage.module.css" import type { CardImageProps } from "@/types/components/cardImage" export default function CardImage({ card, imageCards, className, }: CardImageProps) { return (
{imageCards?.map( ({ backgroundImage }) => backgroundImage && ( {backgroundImage.title} ) )}
) }