import { Navbar } from "@/components/Navbar"; import { Footer } from "@/components/Footer"; import { FloatingWhatsApp } from "@/components/FloatingWhatsApp"; import { CTASection } from "@/components/CTASection"; import { LoadMeterSection } from "@/components/LoadMeterSection"; import Image from "next/image"; import { cn } from "@/lib/utils"; import { Metadata } from "next"; import { FLEET_ITEMS } from "@/lib/data"; export const metadata: Metadata = { title: "Geniş Vinç Filosu ve İş Makineleri Parkurumuz", description: "300 tondan 500 tona kadar mobil vinçler, sepetli platformlar ve hiyap vinçlerden oluşan modern araç filomuzla hizmetinizdeyiz.", }; const FLEET_CATEGORIES = ["Hepsi", "Mobil Vinç", "Sepetli Platform", "Hiyap", "Kule Vinç"]; export default function FleetPage() { return (
{/* Hero Section */}
Heavy crane
PREZİSYONEL GÜÇ

MAKİNE
PARKURUMUZ

{/* Filter System */}
Filtrele: {FLEET_CATEGORIES.map((category, index) => ( ))}
{/* Fleet Grid */}
{FLEET_ITEMS.map((item, index) => (
{item.name}
{item.status}

{item.name}

{item.description}

Kapasite {item.capacity}
Erişim {item.reach}
))}
); }