From b5f0b50c4a39eb225264df982901a1289d8a21c0 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 4 Sep 2025 13:34:31 +0000 Subject: [PATCH] Update platform branding and sharing links to reflect the new domain name This commit updates all instances of the old domain name "go4.video" to the new domain name "video.folx.tv" across various frontend components, including modals, headers, cards, and page metadata. It also includes updates to sharing intent URLs for Twitter and WhatsApp to use the new domain. Additionally, CSS for Video.js loading animations has been added to `index.css`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 946a0075-7e32-454b-b348-9e7f576d7f45 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/946a0075-7e32-454b-b348-9e7f576d7f45/jh6R7y2 --- client/src/components/bunny-video-modal.tsx | 4 +-- client/src/components/netflix-grid.tsx | 2 +- client/src/components/search-header.tsx | 2 +- client/src/components/thumbnail-generator.tsx | 2 +- client/src/components/vast-player.tsx | 2 +- client/src/components/video-ads.tsx | 2 +- client/src/components/video-card.tsx | 2 +- client/src/components/video-grid.tsx | 2 +- client/src/components/video-modal.tsx | 4 +-- client/src/index.css | 25 ++++++++++++++++++ client/src/pages/VideoPage.tsx | 26 +++++++++---------- 11 files changed, 49 insertions(+), 24 deletions(-) diff --git a/client/src/components/bunny-video-modal.tsx b/client/src/components/bunny-video-modal.tsx index a723936..bd7a93d 100644 --- a/client/src/components/bunny-video-modal.tsx +++ b/client/src/components/bunny-video-modal.tsx @@ -156,14 +156,14 @@ export default function BunnyVideoModal({ video, isOpen, onClose, onEdit, videos }; const shareOnTwitter = () => { - const text = `Poglej si "${video?.title}" na go4.video`; + const text = `Poglej si "${video?.title}" na video.folx.tv`; const url = `https://twitter.com/intent/tweet?text=${encodeURIComponent(text)}&url=${encodeURIComponent(getShareUrl())}`; window.open(url, 'twitter-share', 'width=600,height=400'); setShowShareMenu(false); }; const shareOnWhatsApp = () => { - const text = `Poglej si "${video?.title}" na go4.video: ${getShareUrl()}`; + const text = `Poglej si "${video?.title}" na video.folx.tv: ${getShareUrl()}`; const url = `https://wa.me/?text=${encodeURIComponent(text)}`; window.open(url, 'whatsapp-share', 'width=600,height=400'); setShowShareMenu(false); diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 3378658..c752f4f 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -149,7 +149,7 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) {
Loading videos...
diff --git a/client/src/components/search-header.tsx b/client/src/components/search-header.tsx index 7f9131d..f55e0ed 100644 --- a/client/src/components/search-header.tsx +++ b/client/src/components/search-header.tsx @@ -60,7 +60,7 @@ export default function SearchHeader({{(video.title.split(' - ')[1] || video.title).substring(0, 50)} diff --git a/client/src/components/video-grid.tsx b/client/src/components/video-grid.tsx index 555273f..a5c4ed3 100644 --- a/client/src/components/video-grid.tsx +++ b/client/src/components/video-grid.tsx @@ -39,7 +39,7 @@ export default function VideoGrid({ videos, isLoading, hasMore, onLoadMore, view
Loading videos...
Loading video...
Video not found
@@ -342,7 +342,7 @@ export default function VideoPage() {