'use client'; import { Navbar } from "@/components/Navbar"; import { Footer } from "@/components/Footer"; import { FloatingWhatsApp } from "@/components/FloatingWhatsApp"; import { CTASection } from "@/components/CTASection"; import { Settings, ArrowUp, Truck, Compass, ArrowRight, Shield, Zap, Clock } from "lucide-react"; import Image from "next/image"; import { cn } from "@/lib/utils"; import { SERVICES, siteConfig } from "@/lib/data"; const FEATURES = [ { id: "01", title: "Hassas Mühendislik", description: "Her kaldırma operasyonu için detaylı simülasyon ve planlama.", icon: }, { id: "02", title: "Sertifikalı Operatörler", description: "Uluslararası standartlarda eğitim almış uzman teknik ekip.", icon: }, { id: "03", title: "7/24 Teknik Destek", description: "Kesintisiz operasyon için anında müdahale ve destek hizmeti.", icon: } ]; const STATS = [ { label: "Max Kapasite", value: "500T", highlighted: true }, { label: "Yıllık Deneyim", value: "15+", highlighted: false }, { label: "İş Güvenliği", value: "100%", highlighted: false }, { label: "Aktif Operasyon", value: "24/7", highlighted: true } ]; export default function ServicesPage() { const handleWhatsApp = (serviceTitle: string) => { const message = encodeURIComponent(`Merhaba, ${serviceTitle} hizmetiniz hakkında bilgi ve teklif almak istiyorum.`); window.open(`https://wa.me/${siteConfig.contact.whatsapp}?text=${message}`, '_blank'); }; return (
{/* Hero Section */}
Cranes at sunset

Endüstriyel Güç ve Mühendislik Çözümleri

Hizmetlerimiz

{/* Services Grid */}
{SERVICES.map((service, index) => (
{index === 0 && } {index === 1 && } {index === 2 && } {index === 3 && }

{service.title}

{service.description}

{/* Subtle Background Image for Card */}
{service.title}
))}
{/* Why Choose Us */}

Neden AYDOĞAN NAKLİYAT?

Endüstriyel operasyonlarda güvenlik bir seçenek değil, zorunluluktur. Mühendislik odaklı yaklaşımımızla riskleri minimize ediyoruz.

{FEATURES.map((feature) => (
{feature.id}

{feature.title}

{feature.description}

))}
{STATS.map((stat, index) => (
{stat.value} {stat.label}
))}
); }