diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index e7a4006..3d747fa 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -45,11 +45,20 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() ); + // FOLX STADL videos + const folxStadlVideos = videos.filter(video => + video.title.includes("FOLX STADL") || video.title.includes("FOLXSTADL") + ); + return [ { title: "Meist Angesehen", videos: sortedByViews.slice(0, 10) }, + ...(folxStadlVideos.length > 0 ? [{ + title: "FOLX STADL", + videos: folxStadlVideos.slice(0, 12) + }] : []), { title: "GDL VIDEO", videos: (() => {