'use client'; import { use } from 'react'; import { useTranslations } from 'next-intl'; interface PageProps { params: Promise<{ locale: string }>; } export default function ContactPage({ params }: PageProps) { const { locale: _locale } = use(params); const t = useTranslations('Contact'); return (
{/* Editorial Column */}
{t('reservation_concierge')}

{t('title1')}
{t('title2')}

{t('headquarters')}

{t('hq_address1')}
{t('hq_address2')}

{t('direct_line')}

+90 (252) 316 12 34

{t('digital_mail')}

atelier@salmakis.com

{/* Minimalist Form Column */}

{t('form_title')}

); }