Update grid to display specific Folx Stadl S4 collections

Modify the NetflixGrid component to filter videos and display up to 15 items with "FOLX STADL S4" in their title.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/DVZN4Rp
This commit is contained in:
sebastjanartic 2025-08-30 15:13:10 +00:00
parent 11d8dc70f6
commit 6e68075851

View File

@ -52,7 +52,7 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) {
}, },
{ {
title: "FOLX STADL", title: "FOLX STADL",
videos: sortedByViews.slice(10, 20) videos: videos.filter(video => video.title.includes("FOLX STADL S4")).slice(0, 15)
}, },
{ {
title: "Recently Added", title: "Recently Added",