import { MapPin, Phone, Mail, Clock } from "lucide-react";
import ScrollReveal from "@/components/ScrollReveal";
export default function IletisimPage() {
return (
{/* Heading */}
Bize Ulaşın
İletişim & Rezervasyon
Sorularınız veya rezervasyon talepleriniz için bizimle iletişime geçin.
Ekibimiz en kısa sürede dönüş yapacaktır.
{/* Form — takes 3 cols */}
{/* Sidebar — takes 2 cols */}
{/* Contact info card */}
İletişim Bilgileri
{[
{
icon: MapPin,
label: "Adres",
value: "Akyaka Mahallesi, Akçapınar Mevkii, Muğla",
href: undefined,
},
{
icon: Phone,
label: "Telefon / WhatsApp",
value: "+90 533 081 6181",
href: "tel:+905330816181",
},
{
icon: Mail,
label: "E-posta",
value: "info@kitebeachakyaka.com.tr",
href: "mailto:info@kitebeachakyaka.com.tr",
},
{
icon: Clock,
label: "Resepsiyon",
value: "Her gün 08:00 – 22:00",
href: undefined,
},
].map(({ icon: Icon, label, value, href }) => (
-
{label}
{href ? (
{value}
) : (
{value}
)}
))}
{/* Map */}
);
}