import Image from "next/image"; import "./creadores.css"; interface props{ title:string; img:string; width:number; height:number; } export default function CreatorCard({title,img,width,height}:props) { return (
IO

{title}

) }