Update branding and domain name across the platform

Refactors client-side and server-side code to reflect the new domain name video.folx.tv, updating social image generation, CSS styles, and various UI elements including headers, footers, and copyright notices.

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
This commit is contained in:
sebastjanartic 2025-09-04 13:21:10 +00:00
parent 2b0a7ce80f
commit 910e6f1708
5 changed files with 12 additions and 12 deletions

View File

@ -35,7 +35,7 @@ function createSocialImage() {
ctx.fillStyle = 'white';
ctx.font = 'bold 72px Arial, sans-serif';
ctx.textAlign = 'left';
ctx.fillText('go4.video', 400, 330);
ctx.fillText('video.folx.tv', 400, 330);
// Subtitle
ctx.fillStyle = 'rgba(255, 255, 255, 0.8)';

View File

@ -301,7 +301,7 @@ input[data-testid*="search"]::placeholder {
position: absolute;
width: clamp(200px, 20vw, 400px);
height: clamp(100px, 10vw, 200px);
background-image: url('@assets/go4_1756394900352.png');
background-image: url('@assets/folx_MT_poz_b_1756991830394.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
@ -316,7 +316,7 @@ input[data-testid*="search"]::placeholder {
position: absolute;
width: clamp(150px, 15vw, 300px);
height: clamp(75px, 7.5vw, 150px);
background-image: url('@assets/go4_1756394900352.png');
background-image: url('@assets/folx_MT_poz_b_1756991830394.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
@ -331,7 +331,7 @@ input[data-testid*="search"]::placeholder {
position: absolute;
width: clamp(100px, 10vw, 200px);
height: clamp(50px, 5vw, 100px);
background-image: url('@assets/go4_1756394900352.png');
background-image: url('@assets/folx_MT_poz_b_1756991830394.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;

View File

@ -67,7 +67,7 @@ export default function Home() {
}, [searchQuery, refetch]);
return (
<div className="has-fixed-header" style={{minHeight: '100vh', background: 'linear-gradient(135deg, hsl(250, 50%, 15%) 0%, hsl(240, 30%, 25%) 100%)', color: 'white'}}>
<div className="has-fixed-header" style={{minHeight: '100vh', background: 'linear-gradient(135deg, hsl(220, 13%, 9%) 0%, hsl(220, 13%, 12%) 50%, hsl(220, 13%, 15%) 100%)', color: 'white'}}>
{/* STICKY HEADER */}
<div className="header-sticky bg-transparent overflow-hidden">
<div className="container py-6">
@ -78,7 +78,7 @@ export default function Home() {
<div className="w-10 h-10 gradient-primary rounded-lg flex items-center justify-center shadow-lg">
<div className="w-0 h-0 border-l-[11px] border-l-white border-y-[8px] border-y-transparent ml-1"></div>
</div>
<h1 className="text-2xl font-bold text-white tracking-wide">go4.video</h1>
<h1 className="text-2xl font-bold text-white tracking-wide">FOLX</h1>
</Link>
</div>
@ -212,7 +212,7 @@ export default function Home() {
<div className="w-8 h-8 bg-gradient-to-r from-purple-600 to-blue-500 rounded-lg flex items-center justify-center shadow-lg">
<div className="w-0 h-0 border-l-[8px] border-l-white border-y-[6px] border-y-transparent ml-1 drop-shadow-sm"></div>
</div>
<h3 className="text-xl font-bold text-white">go4.video</h3>
<h3 className="text-xl font-bold text-white">video.folx.tv</h3>
</div>
{/* Legal Links */}
@ -230,7 +230,7 @@ export default function Home() {
{/* Copyright */}
<p className="text-bunny-muted text-sm text-center">
© 2025 go4.video. Alle Rechte vorbehalten.
© 2025 video.folx.tv. Alle Rechte vorbehalten.
</p>
</div>
</div>

View File

@ -23,7 +23,7 @@ export default function NotFound() {
<div className="w-9 h-9 gradient-primary rounded-lg flex items-center justify-center shadow-lg">
<div className="w-0 h-0 border-l-[10px] border-l-white border-y-[7px] border-y-transparent ml-1"></div>
</div>
<h1 className="text-2xl font-bold text-white tracking-wide">go4.video</h1>
<h1 className="text-2xl font-bold text-white tracking-wide">FOLX</h1>
</a>
</div>
@ -150,11 +150,11 @@ export default function NotFound() {
<div className="w-8 h-8 gradient-primary rounded-lg flex items-center justify-center shadow-md">
<div className="w-0 h-0 border-l-[8px] border-l-white border-y-[6px] border-y-transparent ml-0.5"></div>
</div>
<span className="text-lg font-semibold text-white">go4.video</span>
<span className="text-lg font-semibold text-white">video.folx.tv</span>
</div>
<div className="text-sm text-bunny-muted">
© 2024 go4.video. All rights reserved.
© 2025 video.folx.tv. All rights reserved.
</div>
</div>
</div>

View File

@ -26,7 +26,7 @@ function generateOGImage() {
ctx.fillStyle = 'white';
ctx.font = 'bold 72px Arial, sans-serif';
ctx.textAlign = 'left';
ctx.fillText('go4.video', 400, 330);
ctx.fillText('video.folx.tv', 400, 330);
// Subtitle
ctx.fillStyle = 'rgba(255, 255, 255, 0.8)';