diff --git a/attached_assets/image_1756732620092.png b/attached_assets/image_1756732620092.png new file mode 100644 index 0000000..3571764 Binary files /dev/null and b/attached_assets/image_1756732620092.png differ diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 9eb36b3..03a375e 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -243,29 +243,17 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate {category.title}
- {/* Right scroll button - only on desktop and not hidden */} - {!hideScrollButtons && ( - - )} {/* Scrollable video row - true edge to edge */}
{category.videos.map((video, index) => (
setClickedVideoId(video.id)} > {/* Top 10 Number overlay for first category */} @@ -289,6 +277,30 @@ function CategoryRow({ category, onVideoClick, hideScrollButtons = false }: Cate
))}
+ + {/* Navigation arrows at the end of each row - only on desktop */} + {!hideScrollButtons && ( +
+ + +
+ )}
);