From 6486c19289f4289d284de1d90e1c0a912746189a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:24:45 +0000 Subject: [PATCH 1/2] Add src/app/elektrikli-forklift/[modelName]/page.tsx --- .../elektrikli-forklift/[modelName]/page.tsx | 247 ++++++++++++++++++ 1 file changed, 247 insertions(+) create mode 100644 src/app/elektrikli-forklift/[modelName]/page.tsx diff --git a/src/app/elektrikli-forklift/[modelName]/page.tsx b/src/app/elektrikli-forklift/[modelName]/page.tsx new file mode 100644 index 0000000..6b45453 --- /dev/null +++ b/src/app/elektrikli-forklift/[modelName]/page.tsx @@ -0,0 +1,247 @@ +"use client"; + +import { useState } from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Phone, MessageCircle, ChevronRight } from "lucide-react"; +import Image from "next/image"; + +interface ProductDetailPageProps { + params: { + modelName: string; + }; +} + +export default function ProductDetailPage({ params }: ProductDetailPageProps) { + const modelName = decodeURIComponent(params.modelName); + const [selectedImage, setSelectedImage] = useState(0); + + const navItems = [ + { name: "Hizmetler", id: "services" }, + { name: "Araçlarımız", id: "products" }, + { name: "Neden Biz", id: "metrics" }, + { name: "SSS", id: "faq" }, + { name: "İletişim", id: "contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "Ana Sayfa", href: "/" }, + { label: "Hakkımızda", href: "/hakkimizda" }, + { label: "Hizmetler", href: "/hizmetler" }, + { label: "Ürünler", href: "/urunler" }, + ], + }, + { + items: [ + { label: "Kiralama", href: "/hizmetler" }, + { label: "Satış", href: "/urunler" }, + { label: "Servis", href: "/hizmetler" }, + { label: "Bakım", href: "/hizmetler" }, + ], + }, + { + items: [ + { label: "Sık Sorulan Sorular", href: "#faq" }, + { label: "İletişim", href: "/iletisim" }, + { label: "Gizlilik Politikası", href: "#" }, + { label: "Kullanım Şartları", href: "#" }, + ], + }, + { + items: [ + { label: "Bize Yazın", href: "mailto:info@timforklift.com.tr" }, + { label: "Çağrı Merkezi: 0532 402 1146", href: "tel:+905324021146" }, + { label: "Tel: 0216 537 1439", href: "tel:+902165371439" }, + { label: "WhatsApp Destek", href: "https://wa.me/905324021146" }, + ], + }, + ]; + + const productImages = [ + "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg", "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg", "http://img.b2bpic.net/free-photo/car-mechanic-repairs-blue-car-garage-with-tools_1157-46532.jpg"]; + + const specifications = [ + { label: "Model Adı", value: modelName }, + { label: "Seri", value: "E-Pro 3000 Series" }, + { label: "Taşıma Kapasitesi", value: "3.000 kg" }, + { label: "Kaldırma Yüksekliği", value: "4.800 mm" }, + { label: "Çatal Uzunluğu", value: "1.200 mm" }, + { label: "Motor Türü", value: "AC Elektrik Motor" }, + { label: "Motor Gücü", value: "48 kW" }, + { label: "Batarya Türü", value: "Lityum-İon (LiFePO4)" }, + { label: "Batarya Voltajı", value: "48V / 100Ah" }, + { label: "Dönüş Yarıçapı", value: "2.200 mm" }, + { label: "Makine Ağırlığı", value: "4.500 kg" }, + { label: "Lastik Türü", value: "Pneumatik", value2: "Rulmanlı" }, + { label: "Direksiyon Sistemi", value: "Hidrolik Elektrik Geçişli" }, + { label: "Hidrolik Sistem", value: "Kuvvetlendirilmiş Körüklü Sistem" }, + { label: "Fren Sistemi", value: "Elektrik Rejeneratif + Mekanik" }, + { label: "Güvenlik Sensörleri", value: "Çarpışma + Kötü Kullanım Algılama" }, + { label: "Kabin Özellikleri", value: "Işıklandırmalı LCD Ekran" }, + { label: "Operatör Konfor Özellikleri", value: "Ergonomik Koltuk + Titreşim Damping" }, + { label: "Eğimlilik Yüzdesi", value: "%15" }, + { label: "Enerji Tüketimi", value: "8 kWh / 100 saat çalışma" }, + { label: "Çalışma Süresi", value: "8 saat sürekli" }, + { label: "Şarj Süresi", value: "4 saat (80% kapasiteye)" }, + { label: "İsteğe Bağlı Ataşmanlar", value: "Klasör, Fınca, Döner Kopya, Kova" }, + { label: "CE Sertifikasyonu", value: "Evet - 2006/42/EC Direktifi" }, + { label: "Garanti Süresi", value: "2 yıl veya 2.000 çalışma saati" }, + { label: "Bakım Planı", value: "Her 250 saat veya 3 ay" }, + { label: "Satış Sonrası Hizmet", value: "Türkiye Geneli 2 Saat Müdahale" }, + ]; + + const otherModels = [ + { name: "E-Pro 2000", image: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg" }, + { name: "E-Pro 2500", image: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg" }, + { name: "E-Pro 3500", image: "http://img.b2bpic.net/free-photo/car-mechanic-repairs-blue-car-garage-with-tools_1157-46532.jpg" }, + ]; + + return ( + +
+ {/* Navbar */} + + + {/* Main Content */} +
+
+ {/* Breadcrumb */} +
+ Ana Sayfa + + Ürünler + + {modelName} +
+ +
+ {/* Product Image Section */} +
+
+ {modelName} +
+
+ {productImages.map((img, idx) => ( + + ))} +
+
+ + {/* CTA Box */} +
+

Fiyat ve Kiralama

+

+ Bu model hakkında detaylı fiyat ve kiralama seçenekleri için bize ulaşın. Türkiye genelinde hızlı teslimat ve kurulum hizmeti sağlarız. +

+ + + +
+

📍 Türkiye Geneli Servis

+

⏱️ 2 Saat Müdahale Garantisi

+
+
+
+ + {/* Specifications Table */} +
+

Teknik Özellikleri

+
+ + + {specifications.map((spec, idx) => ( + + + + {spec.value2 && ( + + )} + + ))} + +
+ {spec.label} + + {spec.value} + + {spec.value2} +
+
+
+ + {/* Other Models Carousel */} +
+

Diğer Elektrikli Forklift Modelleri

+
+ {otherModels.map((model, idx) => ( + + {model.name} +
+

{model.name}

+
+ Detaylı Bilgi + +
+
+
+ ))} +
+
+
+
+ + {/* Footer */} + +
+
+ ); +} -- 2.49.1 From a6e3b2df1f8c257a8dc934d4a6a5eb59645625e8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:24:46 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ee08b25..fd2e546 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -185,25 +185,25 @@ export default function HomePage() { tagIcon={Leaf} products={[ { - id: "1", name: "Transpalet Modelleri", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=2", imageAlt: "Transpalet Modelleri"}, + id: "1", name: "Transpalet Modelleri", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=2", imageAlt: "Transpalet Modelleri", onProductClick: () => window.location.href = "/transpalet-modelleri"}, { - id: "2", name: "İstif Makinesi", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=3", imageAlt: "İstif Makinesi"}, + id: "2", name: "İstif Makinesi", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=3", imageAlt: "İstif Makinesi", onProductClick: () => window.location.href = "/istif-makinesi"}, { - id: "3", name: "Elektrikli Forklift", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=4", imageAlt: "Elektrikli Forklift"}, + id: "3", name: "Elektrikli Forklift", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=4", imageAlt: "Elektrikli Forklift", onProductClick: () => window.location.href = "/elektrikli-forklift"}, { - id: "4", name: "Dizel Forklift", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=5", imageAlt: "Dizel Forklift"}, + id: "4", name: "Dizel Forklift", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=5", imageAlt: "Dizel Forklift", onProductClick: () => window.location.href = "/dizel-forklift"}, { - id: "5", name: "Reach Truck", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=6", imageAlt: "Reach Truck"}, + id: "5", name: "Reach Truck", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=6", imageAlt: "Reach Truck", onProductClick: () => window.location.href = "/reach-truck"}, { - id: "6", name: "Sipariş Toplayıcılar", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=7", imageAlt: "Sipariş Toplayıcılar"}, + id: "6", name: "Sipariş Toplayıcılar", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=7", imageAlt: "Sipariş Toplayıcılar", onProductClick: () => window.location.href = "/siparis-toplayicilari"}, { - id: "7", name: "Elektrikli Çekiciler", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=8", imageAlt: "Elektrikli Çekiciler"}, + id: "7", name: "Elektrikli Çekiciler", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=8", imageAlt: "Elektrikli Çekiciler", onProductClick: () => window.location.href = "/elektrikli-cekiciler"}, { - id: "8", name: "Dar Koridor Makinesi", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=9", imageAlt: "Dar Koridor Makinesi"}, + id: "8", name: "Dar Koridor Makinesi", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=9", imageAlt: "Dar Koridor Makinesi", onProductClick: () => window.location.href = "/dar-koridor-makinesi"}, { - id: "9", name: "Forklift Aksamları", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=10", imageAlt: "Forklift Aksamları"}, + id: "9", name: "Forklift Aksamları", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=10", imageAlt: "Forklift Aksamları", onProductClick: () => window.location.href = "/forklift-aksamlari"}, { - id: "10", name: "Makas Platform", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=11", imageAlt: "Makas Platform"}, + id: "10", name: "Makas Platform", price: "Detaylı Bilgi", imageSrc: "http://img.b2bpic.net/free-photo/factory-worker-protective-suit-with-hardhat-driving-forklift_342744-43.jpg?_wi=11", imageAlt: "Makas Platform", onProductClick: () => window.location.href = "/makas-platform"}, ]} gridVariant="bento-grid" animationType="slide-up" -- 2.49.1