"use client"; import { useState } from "react"; import Image from "next/image"; import Link from "next/link"; import * as LucideIcons from "lucide-react"; import { ArrowRight, Layers, Search, Clapperboard, Camera, Zap } from "lucide-react"; const processSteps = [ { icon: Search, title: "Analiz", desc: "İşletmenizi ve hedef kitlenizi analiz ediyoruz." }, { icon: Clapperboard, title: "Strateji", desc: "Size özel dijital strateji planlıyoruz." }, { icon: Camera, title: "Uygulama", desc: "Çekim, tasarım ve kampanya yönetimi." }, { icon: Zap, title: "Raporlama", desc: "Sonuçları ölçüyor ve optimize ediyoruz." } ]; export default function ServicesClient({ services: initialServices, locations: initialLocations }: { services: any[], locations?: any[] }) { const [services] = useState(initialServices); const [locations] = useState(initialLocations || []); const DynamicIcon = ({ name, className }: { name: string, className?: string }) => { const IconComponent = (LucideIcons as any)[name] || Layers; return ; }; return (
{/* Hero Section */}
Hizmetlerimiz

Drone · Video
Reklam · Dijital

Profesyonel drone çekimlerinden sosyal medya yönetimine, Google reklamlarından web tasarıma — işletmenizin dijital dünyada parlaması için ihtiyacınız olan her şey burada.

{/* Services Grid - Editorial Bento */}
{services.map((item) => (

{item.title}

{item.description}

    {(item.sub_services || []).slice(0, 3).map((sub: string) => (
  • {sub}
  • ))}
{/* Subtle diagonal on hover */}
))}
{/* The Process - Editorial Layout */}
İş Akışımız

Süreç Nasıl İlerler?

{processSteps.map((step, idx) => (
0{idx + 1}

{step.title}

{step.desc}

))}
{/* Locations Section (pSEO Hub) */} {locations.length > 0 && (
Operasyon Bölgelerimiz

Muğla'nın Her
Noktasındayız.

{locations.map((loc) => (

{loc.name}

    {services.slice(0, 3).map((service) => (
  • {loc.name} {service.title}
  • ))}
))}
)} {/* CTA Section */}

Sıradışı Bir Şeyler
Yaratmaya Hazır Mısınız?

Drone çekimi, sosyal medya yönetimi veya dijital reklam — ne ihtiyacınız varsa, birlikte çözüm üretelim.

Hemen Başlayalım Portfolyomuz
); }