From 22387c51482ba1fef4c27f1efc3a942437697625 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 16:10:22 +0000 Subject: [PATCH] Organize video content to display descriptions alongside videos Restructures the FolxStadlPage component to a two-column layout, placing video descriptions on the right side of the video list using lg:grid-cols-3. 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/QQTyNAb --- client/src/pages/FolxStadlPage.tsx | 60 ++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 08af6e1..98754d3 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -57,25 +57,55 @@ export default function FolxStadlPage() { - {/* Video Grid */} + {/* Main Content */}
-
- {folxStadlVideos.map((video) => ( -
- +
+ {/* Left Side - Video List */} +
+
+ {folxStadlVideos.map((video, index) => ( +
+ +
+ ))}
- ))} -
- {folxStadlVideos.length === 0 && ( -
-

No FOLX STADL videos found

+ {folxStadlVideos.length === 0 && ( +
+

No FOLX STADL videos found

+
+ )}
- )} + + {/* Right Side - Description */} +
+
+

FOLX STADL S4

+
+

+ Kompletna 4. sezona FOLX STADL oddaj iz Prime Time Studio Bad Tölz. +

+

+ Vse epizode vključujejo nastope znanih izvajalcev volkstümliche glasbe, + vodijo pa moderatorji Hansi Berger, Martina, Spitzbua Markus in Lucky Putz. +

+
+

V tej kolekciji:

+
    +
  • • {folxStadlVideos.length} kompletnih oddaj
  • +
  • • Nastopi vodilnih izvajalcev
  • +
  • • Premium studio produkcija
  • +
  • • HD video kvaliteta
  • +
+
+
+
+
+
{/* Video Modal */}