diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index a1dba5f..0045089 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -237,17 +237,16 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate return (
setClickedVideoId(null)} > -

+

{category.title}

-
+
{/* Scrollable video row - true edge to edge */}
(
setClickedVideoId(video.id)} + className="flex-shrink-0 w-[280px]" > - {/* Top 10 Number overlay for first category */} - {category.title.includes("Meistgesehen") && index < 10 && clickedVideoId !== video.id && ( -
- {index + 1} -
- )} { setClickedVideoId(video.id); onVideoClick(video); }} - className="w-full hover:scale-102 hover:z-50 transition-all duration-300 group-hover:shadow-2xl rounded-lg overflow-hidden" + className="w-full rounded-lg overflow-hidden" />
))}
- - {/* Navigation arrows - black circles */} -
- -
-
- -
);