From 8393e6393cc8271a45d154a6343999f7dc2724eb Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Sat, 14 Mar 2026 12:00:00 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20wip:=20add=20rating=20to=20card?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/home/sections/Recommendation/components/Card.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/features/home/sections/Recommendation/components/Card.tsx b/features/home/sections/Recommendation/components/Card.tsx index 8606de4..d7708d0 100644 --- a/features/home/sections/Recommendation/components/Card.tsx +++ b/features/home/sections/Recommendation/components/Card.tsx @@ -1,9 +1,15 @@ import { RecommendationAnime } from "@/features/home/actions/getRecommenationAnime"; +import { Icon } from "@iconify/react"; +import { StarOff } from "lucide-react"; const AnimeRecommendationCard = ({ data }: { data: RecommendationAnime }) => { return (
-
+
+
+ + {data.rating ?? "N/A"} +