You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
545 B
19 lines
545 B
import VideoCard from "./VideoCard.jsx";
|
|
|
|
|
|
export default function SeeLater({videos}) {
|
|
|
|
return (
|
|
<div className="mt-10">
|
|
<h2 className="text-3xl font-bold mb-4 text-white">A regarder plus tard</h2>
|
|
<div>
|
|
<div className="grid grid-cols-1 lg:grid-cols-5 gap-8 mt-2">
|
|
{videos && videos.map((video, index) => (
|
|
<VideoCard key={video.id || index} video={video} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
}
|