feat: integrate Cloudinary, add new fleet items and image gallery

This commit is contained in:
2026-04-16 20:52:12 +03:00
parent bac925b5bc
commit 0efef41f5d
94 changed files with 494 additions and 19 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -7,13 +7,15 @@ import Image from "next/image";
import { Metadata } from "next";
import { FLEET_ITEMS } from "@/lib/data";
import { FleetList } from "@/components/FleetList";
import { FleetGallery } from "@/components/FleetGallery";
import { ALL_CLOUDINARY_IMAGES } from "@/lib/gallery_data";
export const metadata: Metadata = {
title: "Vinç Filosu ve İş Makinelerimiz | Dalaman Muğla",
description: "Mobil vinçler, sepetli platformlar ve hiyap vinçlerden oluşan geniş araç parkurumuz hakkında detaylı bilgi alın. Her tonajda profesyonel çözüm.",
};
const FLEET_CATEGORIES = ["Hepsi", "Mobil Vinç", "Sepetli Platform", "Hiyap", "Kule Vinç"];
const FLEET_CATEGORIES = ["Hepsi", "Mobil Vinç", "Sepetli Platform", "Hiyap", "Forklift", "Nakliyat", "İş Makinesi"];
export default function FleetPage() {
return (
@@ -47,6 +49,8 @@ export default function FleetPage() {
<FleetList items={FLEET_ITEMS} categories={FLEET_CATEGORIES} />
<FleetGallery images={ALL_CLOUDINARY_IMAGES} />
<LoadMeterSection />
<CTASection />
<Footer />