import { setRequestLocale } from 'next-intl/server'; import { siteInfo } from '@/lib/data'; import { MapPin, Phone, Mail } from 'lucide-react'; export default async function ContactPage({ params }: { params: Promise<{ locale: string }> }) { const { locale } = await params; setRequestLocale(locale); return (

İletişim

Rezervasyon ve sorularınız için bize ulaşın.

İletişim Bilgileri

Adres

{siteInfo.address}

WhatsApp'tan Bize Yazın

Bize Mesaj Gönderin

); }