diff --git a/attached_assets/image_1756583203861.png b/attached_assets/image_1756583203861.png new file mode 100644 index 0000000..6d4cdac Binary files /dev/null and b/attached_assets/image_1756583203861.png differ diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 63e7f18..f9fe2b8 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -68,38 +68,16 @@ export default function FolxStadlPage() { {/* Main Content */}
- {/* Pagination Info */} -
+ {/* Section title only */} +

- Seite {currentPage} von {totalPages} ({folxStadlVideos.length} Sendungen) + FOLX STADL S4 Episodes

-
- - -
{/* Video List with Descriptions */}
- {currentVideos.map((video, index) => ( + {folxStadlVideos.map((video, index) => (
{/* Video Card */} @@ -134,60 +112,6 @@ export default function FolxStadlPage() { )}
- {/* Bottom Pagination */} - {totalPages > 1 && ( -
- - -
- {Array.from({ length: Math.min(totalPages, 5) }, (_, i) => { - let pageNum; - if (totalPages <= 5) { - pageNum = i + 1; - } else if (currentPage <= 3) { - pageNum = i + 1; - } else if (currentPage >= totalPages - 2) { - pageNum = totalPages - 4 + i; - } else { - pageNum = currentPage - 2 + i; - } - - return ( - - ); - })} -
- - -
- )}
{/* Video Modal */}