diff --git a/.replit b/.replit index 6ce283d..26faa66 100644 --- a/.replit +++ b/.replit @@ -15,6 +15,10 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 +[[ports]] +localPort = 38701 +externalPort = 3000 + [env] PORT = "5000" diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 4bebe92..8e2e6b4 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -323,8 +323,8 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay )} - {/* Desktop gradient overlay with title - hidden on mobile video pages */} - {!showPreview && !hideOverlay && !(isMobile && isVideoPage) && ( + {/* Gradient overlay with title */} + {!showPreview && !hideOverlay && (
{/* Artist/Performer in UPPERCASE - first line */} @@ -340,17 +340,9 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay )}
- {/* Mobile info section - below video - only on video pages */} + {/* Mobile additional info section - below video - only on video pages */} {isMobile && isVideoPage && (
- {/* Artist/Performer in UPPERCASE - first line */} -

- {(video.title.split(' - ')[0] || 'video.folx.tv').length > 30 ? (video.title.split(' - ')[0] || 'video.folx.tv').substring(0, 30) + '...' : (video.title.split(' - ')[0] || 'video.folx.tv')} -

- {/* Song title - second line */} -

- {(video.title.split(' - ')[1] || video.title).length > 40 ? (video.title.split(' - ')[1] || video.title).substring(0, 40) + '...' : (video.title.split(' - ')[1] || video.title)} -

{/* Views and Date in one line */}