'use client' import { motion } from "framer-motion" import Image from "next/image" import Link from "next/link" import { ArrowLeft, Clock, User } from 'lucide-react' export default function NewsDetailClient({ lang, dict, post }: { lang: string, dict: any, post: any }) { return (
{/* HEADER & IMAGE */}
{/* Back Button */} {lang === 'tr' ? 'Haberlere Dön' : 'Back to News'}
{post.author}
{new Date(post.createdAt).toLocaleDateString(lang === 'tr' ? 'tr-TR' : 'en-US')}
{post.title}
{post.image && ( {post.title} )}
{/* CONTENT */}

{post.excerpt}

{post.content}
{dict.footer.book}
) }