"use client"; import { motion } from "framer-motion"; import { cn } from "@/lib/utils"; import { FLEET_ITEMS, siteConfig } from "@/lib/data"; import Link from "next/link"; import { MessageCircle } from "lucide-react"; export function FleetSection() { const handleWhatsApp = (itemName: string) => { const message = encodeURIComponent(`Merhaba, ${itemName} hakkında bilgi almak istiyorum.`); window.open(`https://wa.me/${siteConfig.contact.whatsapp}?text=${message}`, '_blank'); }; return (

Makine Parkuru

Modern ve Güçlü Filo

{FLEET_ITEMS.map((v, idx) => (
{v.name}
{v.status}

{v.name}

{v.category}
Kapasite {v.capacity}
Erişim {v.reach}
Detayları Gör
))} {/* Visual cue for more items */}
NEXT
Kaydırarak inceleyin
); }