'use client' import { motion } from "framer-motion" import Image from "next/image" import Link from "next/link" import { Calendar, User, Share2, ArrowLeft } from 'lucide-react' export default function NewsDetailClient({ lang, slug, dict }: { lang: string, slug: string, dict: any }) { // Use dictionary instead of hardcoded data where possible // For demo, we still use a local map but referring to Ören const newsData: Record = { 'hidden-gems-oren': { title: dict.news_page.list.n1.title, date: 'April 15, 2026', author: dict.news_page.list.n1.author, category: 'Travel Guide', image: 'https://images.unsplash.com/photo-1544124499-58912cbddaad?q=80&w=2127&auto=format&fit=crop', content: [ { type: 'paragraph', text: dict.news_page.list.n1.excerpt + ' ' + (lang === 'tr' ? 'Ören’in saklı koyları, zamanın ötesinde bir huzur sunuyor. Turkuaz suların üzerinden sabah sisi kalkarken, standart haritaların ötesine bakmaya istekli olanlar için gizli sığınaklar kendilerini göstermeye başlıyor. Bugünkü yolculuğumuz bizi Ege’nin saklı kalbinde bir keşfe çıkarıyor.' : 'Beyond the crowded beaches, the secret coves of Oren offer a peace beyond time. As the morning mist lifts from the turquoise waters, hidden havens begin to reveal themselves to those willing to look beyond standard maps. Our journey today takes us on an exploration in the hidden heart of the Aegean.') }, { type: 'quote', text: lang === 'tr' ? 'Gerçek keşif yolculuğu yeni manzaralar aramak değil, yeni gözlere sahip olmaktan geçer.' : 'The real voyage of discovery consists not in seeking new landscapes, but in having new eyes.' }, { type: 'paragraph', text: lang === 'tr' ? 'Gemile koyunun sessiz kıyılarında, zeytinlikler arasında sessizce oturan antik kalıntılar bunlardan sadece biri. Bu sessiz taşların arasında yürürken, Bizanslı tüccarların yankılarını neredeyse duyabilirsiniz. Burası, tarihin, doğanın ve sessiz lüksün harmanlandığı, Ayris Apart\'ın gerçek özünü bulduğumuz yerdir.' : 'The ancient ruins sitting quietly amidst olive groves on the silent shores of Gemile Bay are just one of them. Walking among these silent stones, you can almost hear the echoes of Byzantine merchants. This is where we find the true essence of Ayris Apart, where history, nature, and silent luxury blend.' }, { type: 'image', url: 'https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop' } ] }, 'summer-cocktails-retreat': { title: dict.news_page.list.n2.title, date: 'April 10, 2026', author: dict.news_page.list.n2.author, category: 'Lifestyle', image: 'https://images.unsplash.com/photo-1519046904884-53103b34b206?q=80&w=2073&auto=format&fit=crop', content: [ { type: 'paragraph', text: dict.news_page.list.n2.excerpt } ] }, 'luxury-interior-trends': { title: dict.news_page.list.n3.title, date: 'April 05, 2026', author: dict.news_page.list.n3.author, category: 'Design', image: 'https://images.unsplash.com/photo-1618773928121-c32242e63f39?q=80&w=1964&auto=format&fit=crop', content: [ { type: 'paragraph', text: dict.news_page.list.n3.excerpt } ] } } const post = newsData[slug] || newsData['hidden-gems-oren'] return (
{/* HEADER SECTION */}
{post.category} {post.date} {post.title}

Written By

{post.author}

{/* FEATURE IMAGE */}
{post.title}
{/* CONTENT SECTION */}
{post.content.map((block: any, idx: number) => { if (block.type === 'paragraph') { return (

{block.text}

) } if (block.type === 'quote') { return (

“{block.text}”

) } if (block.type === 'image') { return (
Article imagery
) } return null })} {/* SHARE & BACK */}
{lang === 'tr' ? 'Haberlere Dön' : 'Back to News'}
Share
) }