'use client'
import { motion } from 'framer-motion'
import Image from 'next/image'
import BougainvilleaMotif from '@/components/BougainvilleaMotif'
import { MapPin, Waves, ShoppingBasket, Coffee, PersonStanding, Phone, Mail } from 'lucide-react'
import { useTranslations } from 'next-intl'
const EASE: [number, number, number, number] = [0.22, 1, 0.36, 1]
export default function ContactPage() {
const t = useTranslations('contact')
return (
{/* Hero Section */}
{t('title')}
{t('description')}
{/* Location Grid */}
{/* Map Container */}
{t('connect.map_placeholder')}
{/* Mock Map Interaction Layer */}
{t('connect.address_title')}
{t('connect.address_value')}
{/* Highlights List */}
{[
{ icon: Waves, title: t('locations.beach.title'), desc: t('locations.beach.desc') },
{ icon: ShoppingBasket, title: t('locations.market.title'), desc: t('locations.market.desc') },
{ icon: Coffee, title: t('locations.cafe.title'), desc: t('locations.cafe.desc') },
{ icon: PersonStanding, title: t('locations.hiking.title'), desc: t('locations.hiking.desc') },
].map((item, idx) => (
-
))}
{/* Contact Section */}
{/* Contact Form Card */}
{t('form.title')}
{/* Contact Details & Visual */}
{t('connect.title')}
{t('connect.description')}
{t('connect.phone')}
+90 530 510 98 42
{t('connect.email')}
iletisim@sitarapart.com
{/* Decorative Image */}
)
}