👔 feat: add title and additional attributes to card

This commit is contained in:
2026-03-15 21:11:20 +07:00
parent 8393e6393c
commit 5cb3b909be
6 changed files with 79 additions and 11 deletions

View File

@ -5,7 +5,7 @@ const RecommendationMain = async () => {
const data = async () => await getRecommendationAnimeAction();
const result = await data();
return (
<div className="flex gap-2 w-full overflow-x-scroll py-2 my-2">
<div className="flex gap-2 w-full overflow-x-scroll py-2 my-2 hide-scrollbar">
{result.map((item, index) => (
<AnimeRecommendationCard data={item} key={index} />
))}