Add a comprehensive footer with company information and navigation links

Includes company info, navigation, categories, support links, and copyright notice in the footer component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 890577b1-c154-40a4-a177-a0c6d55320c3
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/890577b1-c154-40a4-a177-a0c6d55320c3/2xHHKQn
This commit is contained in:
sebastjanartic 2025-09-01 20:25:32 +00:00
parent 1504911fab
commit 08388dd262

View File

@ -161,6 +161,66 @@ export default function Home() {
/> />
</div> </div>
</main> </main>
{/* Footer */}
<footer className="bg-bunny-dark/90 border-t border-white/10 py-8 mt-12">
<div className="container">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 text-sm">
{/* Company Info */}
<div className="col-span-1">
<div className="flex items-center space-x-2 mb-4">
<div className="w-8 h-8 gradient-primary rounded-lg flex items-center justify-center">
<div className="w-0 h-0 border-l-[8px] border-l-white border-y-[6px] border-y-transparent ml-1"></div>
</div>
<h3 className="text-xl font-bold text-white">go4.video</h3>
</div>
<p className="text-bunny-muted leading-relaxed">
Professionelle Video-Streaming-Plattform für österreichische Volksmusik und Unterhaltung.
</p>
</div>
{/* Navigation */}
<div className="col-span-1">
<h4 className="text-white font-semibold mb-4">Navigation</h4>
<ul className="space-y-2">
<li><Link href="/" className="text-bunny-muted hover:text-white transition-colors">Home</Link></li>
<li><Link href="/folx-stadl" className="text-bunny-muted hover:text-white transition-colors">FOLX STADL</Link></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">GDL Video</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Live Streams</a></li>
</ul>
</div>
{/* Categories */}
<div className="col-span-1">
<h4 className="text-white font-semibold mb-4">Kategorien</h4>
<ul className="space-y-2">
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Volksmusik</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Dokumentationen</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Interviews</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Shows</a></li>
</ul>
</div>
{/* Support */}
<div className="col-span-1">
<h4 className="text-white font-semibold mb-4">Support</h4>
<ul className="space-y-2">
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Hilfe & FAQ</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Kontakt</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Datenschutz</a></li>
<li><a href="#" className="text-bunny-muted hover:text-white transition-colors">Impressum</a></li>
</ul>
</div>
</div>
{/* Copyright */}
<div className="border-t border-white/10 mt-8 pt-6 text-center">
<p className="text-bunny-muted text-sm">
© 2025 go4.video. Alle Rechte vorbehalten. | Powered by Bunny.net CDN
</p>
</div>
</div>
</footer>
</div> </div>
); );
} }