diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 240b8ea..c4691cc 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -291,40 +291,16 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay {/* Mobile info section - below video */} {isMobile && (
- {/* Title */} -

+ {/* Title - first line only */} +

{video.title.split(' - ')[0] || 'go4.video'}

- {/* Duration and Views in one line */} -
+ {/* Views and Date in one line */} +
{formatViews(video.views || 0)} {formatDate(video.createdAt)}
- - {/* Show More / Show Less button */} - - - {/* Full text when expanded */} -
-

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

- {showMoreInfo && video.description && ( -

- {video.description} -

- )} -
)}