diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 9665958..33dabb4 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -309,34 +309,48 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay {isMobile && isVideoPage && (
{/* Full title */} -

+

{video.title}

{/* Views and Date in one line */} -
+
{formatViews(video.views || 0)} {formatDate(video.createdAt)}
{/* Description with expand/collapse */} {(video.title.split(' - ')[1] || video.description) && ( -
-
-

+

+
+

{video.title.split(' - ')[1] || video.description || ''}

+ {!showMoreInfo && ( + + )} +
+ {showMoreInfo && ( -
+ )}
)}