'use client' import { motion } from 'framer-motion' import Image from 'next/image' import Link from 'next/link' export default function ProjectDetailClient({ project }: { project: any }) { return (
{/* Navigation */} {/* Hero Section */}
{project.year} — {project.location}

{project.title}

{project.description || `Bu proje, modern mimari prensipleri ve fonksiyonel tasarım anlayışıyla hayata geçirilmiştir. Fethiye merkezli A.N.T Architecture vizyonuyla şekillenen bu yapı, çevresel dokuyla uyumlu bir estetik sunar.`}

Kategori
{project.category || 'Architecture'}
{project.title}
{/* Gallery Section */} {project.gallery && project.gallery.length > 0 && (

PROJE GÖRSELLERİ

{project.gallery.map((img: string, i: number) => ( {`${project.title} ))}
)} {/* Back Link Footer */}
) }