first commit
This commit is contained in:
78
lib/data.ts
Normal file
78
lib/data.ts
Normal file
@@ -0,0 +1,78 @@
|
||||
import { Settings, ArrowUp, Truck, Compass, Shield, Zap, Clock, MapPin, Phone, Mail } from "lucide-react";
|
||||
|
||||
export const siteConfig = {
|
||||
name: "Aydoğan Nakliyat Vinç",
|
||||
url: "https://aydogannakliyatvinc.com",
|
||||
description: "Muğla Dalaman merkezli profesyonel vinç kiralama ve ağır nakliyat hizmetleri.",
|
||||
contact: {
|
||||
address: "Merkez Mah. Sanayi Sitesi No: 42 Dalaman / Muğla",
|
||||
phone: "+90 252 692 00 00",
|
||||
email: "info@aydogannakliyat.com",
|
||||
whatsapp: "902526920000",
|
||||
maps: "https://maps.google.com"
|
||||
},
|
||||
social: {
|
||||
facebook: "https://facebook.com/aydogannakliyatvinc",
|
||||
instagram: "https://instagram.com/aydogannakliyatvinc"
|
||||
}
|
||||
};
|
||||
|
||||
export const SERVICES = [
|
||||
{
|
||||
title: "Mobil Vinç Kiralama",
|
||||
description: "500 tona kadar kaldırma kapasitesine sahip geniş filomuzla, en zorlu şantiye koşullarında yüksek hassasiyetli operasyonlar.",
|
||||
image: "https://images.unsplash.com/photo-1541625602330-2277a4c4b282?q=80&w=2070&auto=format&fit=crop"
|
||||
},
|
||||
{
|
||||
title: "Sepetli Platform",
|
||||
description: "75 metreye kadar erişim sağlayan modern platform filomuzla yüksek irtifa montaj ve bakım işlerinizde maksimum güvenlik.",
|
||||
image: "https://images.unsplash.com/photo-1578319439584-104c94d37305?q=80&w=2070&auto=format&fit=crop"
|
||||
},
|
||||
{
|
||||
title: "Ağır Nakliyat",
|
||||
description: "Gabari dışı ve ağır tonajlı yüklerin özel ekipmanlar ve low-bed araçlarla emniyetli bir şekilde taşınması ve konumlandırılması.",
|
||||
image: "https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=2070&auto=format&fit=crop"
|
||||
},
|
||||
{
|
||||
title: "Proje Taşımacılığı",
|
||||
description: "Anahtar teslim endüstriyel tesis taşıma ve kurulum projeleri için mühendislik temelli uçtan uca lojistik planlama.",
|
||||
image: "https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop"
|
||||
}
|
||||
];
|
||||
|
||||
export const FLEET_ITEMS = [
|
||||
{
|
||||
name: "Liebherr LTM 1300",
|
||||
description: "Endüstriyel ağır kaldırma operasyonları için maksimum stabilite ve erişim gücü.",
|
||||
capacity: "300 Ton",
|
||||
reach: "78 Metre",
|
||||
image: "https://images.unsplash.com/photo-1541625602330-2277a4c4b282?q=80&w=2070&auto=format&fit=crop",
|
||||
status: "Müsait",
|
||||
category: "Mobil Vinç"
|
||||
},
|
||||
{
|
||||
name: "Hiyap 75 Ton",
|
||||
description: "Şehir içi dar alanlarda yüksek manevra kabiliyeti ve pratik yükleme çözümü.",
|
||||
capacity: "75 Ton",
|
||||
reach: "32 Metre",
|
||||
image: "https://images.unsplash.com/photo-1578319439584-104c94d37305?q=80&w=2070&auto=format&fit=crop",
|
||||
status: "Bakımda",
|
||||
category: "Hiyap"
|
||||
},
|
||||
{
|
||||
name: "Sepetli Platform 45M",
|
||||
description: "Yüksek irtifa montaj ve bakım çalışmaları için güvenli çalışma sahası.",
|
||||
capacity: "450 Kg",
|
||||
reach: "45 Metre",
|
||||
image: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?q=80&w=2070&auto=format&fit=crop",
|
||||
status: "Müsait",
|
||||
category: "Sepetli Platform"
|
||||
}
|
||||
];
|
||||
|
||||
export const ABOUT_STATS = [
|
||||
{ label: "Yıllık Tecrübe", value: "20+" },
|
||||
{ label: "Tamamlanan Proje", value: "1500+" },
|
||||
{ label: "Modern Araç Filosu", value: "25+" },
|
||||
{ label: "Maksimum Kapasite", value: "500t" }
|
||||
];
|
||||
6
lib/utils.ts
Normal file
6
lib/utils.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { type ClassValue, clsx } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
||||
Reference in New Issue
Block a user