Add essential legal links to all pages for compliance

Integrate "Impressum", "Privacy Policy", and "Terms and Conditions" links across multiple pages, including FolxStadlPage, GeschichteLiedPage, GipfelstammtischPage, VideoPage, and home.tsx, addressing a requirement for visible legal documentation. Also, update copyright year in VideoPage to 2025.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/gjpMN2A
This commit is contained in:
sebastjanartic 2025-09-03 20:31:48 +00:00
parent 8cdbbb6efd
commit f6904184ca
6 changed files with 61 additions and 7 deletions

View File

@ -40,4 +40,4 @@ args = "npm run dev"
waitForPort = 5000
[agent]
integrations = ["javascript_database==1.0.0", "javascript_google_analytics==1.0.0"]
integrations = ["javascript_google_analytics==1.0.0", "javascript_database==1.0.0"]

View File

@ -310,6 +310,19 @@ export default function FolxStadlPage() {
<h3 className="text-xl font-bold text-white">go4.video</h3>
</div>
{/* Legal Links */}
<div className="flex items-center space-x-6 text-sm">
<Link href="/impressum" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Impressum
</Link>
<Link href="/privacy" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Privacy Policy
</Link>
<Link href="/terms" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Terms and Conditions
</Link>
</div>
{/* Copyright */}
<p className="text-bunny-muted text-sm text-center">
© 2025 go4.video. Alle Rechte vorbehalten.

View File

@ -311,6 +311,19 @@ export default function GeschichteLiedPage() {
<h3 className="text-xl font-bold text-white">go4.video</h3>
</div>
{/* Legal Links */}
<div className="flex items-center space-x-6 text-sm">
<Link href="/impressum" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Impressum
</Link>
<Link href="/privacy" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Privacy Policy
</Link>
<Link href="/terms" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Terms and Conditions
</Link>
</div>
{/* Copyright */}
<p className="text-bunny-muted text-sm text-center">
© 2025 go4.video. Alle Rechte vorbehalten.

View File

@ -311,6 +311,19 @@ export default function GipfelstammtischPage() {
<h3 className="text-xl font-bold text-white">go4.video</h3>
</div>
{/* Legal Links */}
<div className="flex items-center space-x-6 text-sm">
<Link href="/impressum" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Impressum
</Link>
<Link href="/privacy" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Privacy Policy
</Link>
<Link href="/terms" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Terms and Conditions
</Link>
</div>
{/* Copyright */}
<p className="text-bunny-muted text-sm text-center">
© 2025 go4.video. Alle Rechte vorbehalten.

View File

@ -801,16 +801,31 @@ export default function VideoPage() {
<div className="absolute top-1 left-10 w-0 h-0 border-l-[15px] border-l-transparent border-r-[15px] border-r-transparent border-b-[20px] border-b-blue-400/4 -rotate-12 z-0"></div>
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8 relative z-10">
<div className="flex flex-col md:flex-row items-center justify-between">
<div className="flex items-center space-x-2 mb-4 md:mb-0">
<div className="flex flex-col items-center justify-center space-y-4">
{/* Logo */}
<div className="flex items-center space-x-2">
<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>
</div>
<div className="text-sm text-bunny-muted">
© 2024 go4.video. Alle Rechte vorbehalten.
{/* Legal Links */}
<div className="flex items-center space-x-6 text-sm">
<Link href="/impressum" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Impressum
</Link>
<Link href="/privacy" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Privacy Policy
</Link>
<Link href="/terms" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Terms and Conditions
</Link>
</div>
{/* Copyright */}
<div className="text-sm text-bunny-muted text-center">
© 2025 go4.video. Alle Rechte vorbehalten.
</div>
</div>
</div>

View File

@ -221,10 +221,10 @@ export default function Home() {
Impressum
</Link>
<Link href="/privacy" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Datenschutz
Privacy Policy
</Link>
<Link href="/terms" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Nutzungsbedingungen
Terms and Conditions
</Link>
</div>