diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index eae5150..9256edb 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -51,14 +51,6 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { ); return [ - { - title: "Meist Angesehen", - videos: sortedByViews.slice(0, 10) - }, - ...(folxStadlVideos.length > 0 ? [{ - title: "FOLX STADL", - videos: folxStadlVideos.slice(0, 12) - }] : []), { title: "GDL VIDEO", videos: (() => { @@ -102,6 +94,14 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { return result; })() }, + { + title: "Meist Angesehen", + videos: sortedByViews.slice(0, 10) + }, + ...(folxStadlVideos.length > 0 ? [{ + title: "FOLX STADL", + videos: folxStadlVideos.slice(0, 12) + }] : []), { title: "Trending Now", videos: videos.slice(0, 12)