skyflytravel.hu/components/footer.tsx

70 lines
4.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client"
import { Button } from "@/components/ui/button"
import { useLanguage } from "@/lib/language-context"
export default function Footer() {
const { t } = useLanguage()
return (
<section className="py-16 md:py-20 bg-slate-950 text-white text-center">
<div className="max-w-4xl mx-auto px-6 space-y-12">
<h2 className="text-4xl md:text-6xl font-black tracking-tighter uppercase">{t.footer.ready}</h2>
<p className="text-xl text-slate-400 max-w-xl mx-auto">
{t.footer.description}
</p>
<div className="flex justify-center gap-6">
<Button size="lg" asChild className="rounded-full px-12 h-14 text-sm font-bold uppercase tracking-widest bg-primary hover:bg-primary/90 transition-all shadow-2xl">
<a href="https://app.skyflytravel.hu/public/offers/new" target="_blank" rel="noopener noreferrer">
{t.footer.cta}
</a>
</Button>
</div>
<div className="pt-12 border-t border-white/5 space-y-6">
<div className="flex flex-wrap justify-center gap-x-8 gap-y-2 text-slate-400 text-xs font-bold uppercase tracking-widest">
<a href="/docs/impresszum.pdf" target="_blank" rel="noopener noreferrer" className="hover:text-primary transition-colors">
{t.footer.impressum}
</a>
<a href="/docs/ADATVEDELEMI_SZABALYZAT_ZT.pdf" target="_blank" rel="noopener noreferrer" className="hover:text-primary transition-colors">
{t.footer.privacy}
</a>
</div>
<div className="flex flex-wrap justify-center gap-4">
<a href="https://www.facebook.com/airporttransfer.gyor" target="_blank" rel="noopener noreferrer" aria-label="Facebook" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="/images/social/facebook.png" alt="Facebook" className="w-5 h-5 object-contain" />
</a>
<a href="https://plus.google.com/u/0/115420236176324532133/posts" target="_blank" rel="noopener noreferrer" aria-label="Google Plus" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="/images/social/googleplus.png" alt="Google Plus" className="w-5 h-5 object-contain" />
</a>
<a href="https://x.com/SkyFlyTravel1" target="_blank" rel="noopener noreferrer" aria-label="X (Twitter)" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="/images/social/twitter.png" alt="X (Twitter)" className="w-5 h-5 object-contain" />
</a>
<a href="http://skyflytravel.blogspot.hu/" target="_blank" rel="noopener noreferrer" aria-label="Blogspot" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="/images/social/blogspot.png" alt="Blogspot" className="w-5 h-5 object-contain" />
</a>
<a href="https://www.tiktok.com/@skyflytravel.transfer" target="_blank" rel="noopener noreferrer" aria-label="TikTok" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="https://cdn.simpleicons.org/tiktok/ffffff" alt="TikTok" className="w-5 h-5 object-contain" />
</a>
<a href="https://www.instagram.com/skyfly_travel/" target="_blank" rel="noopener noreferrer" aria-label="Instagram" className="opacity-80 hover:opacity-100 transition-opacity">
<img src="/images/social/instagram.png" alt="Instagram" className="w-5 h-5 object-contain" />
</a>
</div>
<div className="text-slate-600 text-[10px] font-bold uppercase tracking-widest">
©2026 SkyFly Travel. {t.footer.rights}
</div>
<div className="text-slate-900/10 text-[8px] leading-tight select-none">
Reptéri transzfer, transzfer Győr, Budapest, Bécs Schwechat, Pozsony Airport shuttle Airport taxi Reptéri járatok Repülőtéri transzfer Budapest repülőtér Pozsony repülőtér Bécs repülőtér (Vienna Airport) Transzfer Budapest Airport Transzfer Vienna Airport Budapest Liszt Ferenc (Ferihegy)
</div>
<div className="flex flex-col items-center gap-1 text-slate-800 text-[9px] font-bold uppercase tracking-widest pt-2 sm:flex-row sm:justify-center sm:gap-4">
<a href="https://transzfer.lap.hu" target="_blank" rel="noopener noreferrer" className="hover:text-primary transition-colors">transzfer.lap.hu</a>
<span className="opacity-20 hidden sm:inline">|</span>
<a href="https://utasszallitas.lap.hu" target="_blank" rel="noopener noreferrer" className="hover:text-primary transition-colors">utasszallitas.lap.hu</a>
<span className="opacity-20 hidden sm:inline">|</span>
<a href="https://repuloter.lap.hu" target="_blank" rel="noopener noreferrer" className="hover:text-primary transition-colors">repuloter.lap.hu</a>
</div>
</div>
</div>
</section>
)
}