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

Contact Us

{/* Contact Info */}

Get In Touch

Pioneer travel is here to help you with all your trips and excursions. Fill out the form or contact us directly using the information below.

Office Address

Çarşı Caddesi Tonoz İş Merkezi No:3/1
Ölüdeniz - Fethiye / Türkiye

Phone Number

+90 530 378 48 82

Email Address

info@fethiyeholiday.com

{/* Contact Form */}

Send a Message

) }