From c69adf3f6706589ad9906db288565163cdadeae9 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 16:18:47 +0000 Subject: [PATCH] Improve video display layout with descriptions and details Restructure the video display on the FolxStadlPage to a three-column grid, separating the VideoCard and its associated description and metadata for better readability. 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 | 39 +++++++++++++++--------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index a8271a7..38baabc 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -101,26 +101,27 @@ export default function FolxStadlPage() {
{currentVideos.map((video, index) => (
- {/* Video Card */} -
- -
- - {/* Video Description Below */} -
-

{video.title}

-
- {video.views} Aufrufe - {Math.floor(video.duration / 60)}:{(video.duration % 60).toString().padStart(2, '0')} min - 1 day ago +
+ {/* Video Card */} +
+ +
+ + {/* Video Description */} +
+

{video.title}

+

+ {video.description || "Keine Beschreibung für diese Sendung verfügbar."} +

+
+ {Math.floor(video.duration / 60)}:{(video.duration % 60).toString().padStart(2, '0')} min + {video.views} Aufrufe +
-

- {video.description || "Keine Beschreibung für diese Sendung verfügbar."} -

))}