Files
front-AT/app/creadores/CreatorCard.tsx
T

26 lines
608 B
TypeScript
Raw Normal View History

2026-02-13 16:10:05 -06:00
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 (
<div className="card">
<div className="imageWrapper">
<Image
src={img}
alt="IO"
width={width}
height={height}
className="creators"
/>
</div>
2026-02-13 17:48:35 -06:00
<h1 className="titles">{title}</h1>
2026-02-13 16:10:05 -06:00
</div>
)
}