Files
parakasa/components/layout/footer.tsx
2026-01-03 14:20:27 +03:00

64 lines
3.1 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.
import Link from "next/link"
export function Footer() {
return (
<footer className="w-full border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60 py-12 md:py-24 lg:py-32">
<div className="container grid gap-8 px-4 md:px-6 lg:grid-cols-4">
<div className="flex flex-col gap-2">
<Link href="/" className="flex items-center gap-2">
<span className="text-xl font-bold tracking-tighter">PARAKASA</span>
</Link>
<p className="text-sm text-muted-foreground">
Yüksek güvenlikli çelik kasa ve para sayma sistemleri için güvenilir çözüm ortağınız.
</p>
</div>
<div className="flex flex-col gap-2">
<h3 className="font-semibold">Ürünler</h3>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Ev Tipi Kasalar
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Ofis Tipi Kasalar
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Otel Kasaları
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Para Sayma Makineleri
</Link>
</div>
<div className="flex flex-col gap-2">
<h3 className="font-semibold">Kurumsal</h3>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Hakkımızda
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Referanslar
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
Bayilik Başvurusu
</Link>
<Link href="#" className="text-sm hover:underline underline-offset-4">
İletişim
</Link>
</div>
<div className="flex flex-col gap-2">
<h3 className="font-semibold">Bize Ulaşın</h3>
<p className="text-sm text-muted-foreground">
İstanbul, Türkiye
</p>
<p className="text-sm text-muted-foreground">
+90 212 000 00 00
</p>
<div className="flex gap-4 mt-4">
{/* Social Media Icons would go here */}
</div>
</div>
</div>
<div className="container px-4 md:px-6 mt-8 pt-8 border-t text-center text-sm text-muted-foreground">
© 2026 ParaKasa. Tüm hakları saklıdır.
</div>
</footer>
)
}