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."} -

))}