1419 lines
34 KiB
TypeScript
1419 lines
34 KiB
TypeScript
import {
|
||
All_cranes,
|
||
Aspal_1800,
|
||
Aspal_800,
|
||
Aspal_k,
|
||
Assenizator,
|
||
AvtokranSlider,
|
||
Avtolift28,
|
||
Avtolift53,
|
||
Avtovishka28,
|
||
Avtovishka36,
|
||
Avtovishka45,
|
||
Avtovishka60,
|
||
Avtovishka75,
|
||
Balon,
|
||
Balon1,
|
||
Balon2,
|
||
Beton_nasos,
|
||
Buldozer,
|
||
Buldozer1,
|
||
Buldozer2,
|
||
Chakman2,
|
||
Digger,
|
||
Digger1,
|
||
Digger2,
|
||
ekskavatorSlider,
|
||
Evakuator,
|
||
Evakuator20,
|
||
Evakuator5,
|
||
EvakuatorGruzavoy,
|
||
Fork1,
|
||
Fork2,
|
||
Fork3,
|
||
Forkliftlar,
|
||
Gazel2,
|
||
Gazel5,
|
||
Grayder,
|
||
Grayder1,
|
||
Howo1,
|
||
Howo2_1,
|
||
Howo3_1,
|
||
Isuzu2,
|
||
Kaimei1,
|
||
Kat,
|
||
Katok10,
|
||
Katok20,
|
||
Katok3,
|
||
Katok4,
|
||
Katok6,
|
||
kompressorSlider,
|
||
Kran1,
|
||
Kran130,
|
||
Kran2,
|
||
Kran30,
|
||
Kran4,
|
||
Kran50,
|
||
Kran75,
|
||
Kranmexanik1,
|
||
Kranminora1,
|
||
Manipulyator,
|
||
Mikser,
|
||
Mini,
|
||
Mini1,
|
||
Mini2,
|
||
Minora1,
|
||
Minora4,
|
||
Old,
|
||
Old1,
|
||
Old2,
|
||
Old3,
|
||
Old_yuklagich_3,
|
||
Old_yuklagich_biru8,
|
||
Old_yuklagich_mini1,
|
||
Old_yuklagich_mini2,
|
||
oldYuklagich,
|
||
Paletli,
|
||
Paletli1,
|
||
Paletli2,
|
||
Pnevka_Katok16,
|
||
Pnevka_Katok4,
|
||
Samasval,
|
||
Shalanda,
|
||
Tel1,
|
||
Tel2,
|
||
Tel3,
|
||
Tel4,
|
||
Teleskop,
|
||
Traller,
|
||
Treyler,
|
||
Treyler1,
|
||
Treyler2,
|
||
Treyler6,
|
||
Vodovoz,
|
||
} from "@/assets";
|
||
import { innerCardTypes, ProductTypes } from "@/types";
|
||
|
||
// all truck information
|
||
export const trucks: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "cement-truck",
|
||
desc: "agreement",
|
||
path: "cement-truck",
|
||
image: Mikser,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "dumb-truck",
|
||
desc: "agreement",
|
||
path: "dumb-truck",
|
||
image: Samasval,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "trailers",
|
||
desc: "agreement",
|
||
path: "trailers",
|
||
image: Treyler,
|
||
},
|
||
{
|
||
id: 4,
|
||
truck_name: "shalanda_traller",
|
||
desc: "agreement",
|
||
path: "shalanda_traller",
|
||
image: Traller,
|
||
},
|
||
{
|
||
id: 5,
|
||
truck_name: "beton_nasos",
|
||
desc: "agreement",
|
||
path: "beton_nasos",
|
||
image: Beton_nasos,
|
||
},
|
||
];
|
||
|
||
export const cranes: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "avtotowers",
|
||
desc: "agreement",
|
||
path: "avtotowers",
|
||
image: Kran1,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "avtocranes",
|
||
desc: "agreement",
|
||
path: "avtocranes",
|
||
image: Kran2,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "tower-cranes",
|
||
desc: "agreement",
|
||
path: "tower-cranes",
|
||
image: All_cranes,
|
||
},
|
||
{
|
||
id: 4,
|
||
truck_name: "manipulyator",
|
||
desc: "agreement",
|
||
path: "manipulyator",
|
||
image: Manipulyator,
|
||
},
|
||
];
|
||
|
||
export const forklift: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "front-loaders",
|
||
desc: "agreement",
|
||
path: "front-loaders",
|
||
image: Old,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "tele-loaders",
|
||
desc: "agreement",
|
||
path: "tele-loaders",
|
||
image: Teleskop,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "forklift-trucks",
|
||
desc: "agreement",
|
||
path: "forklift-trucks",
|
||
image: Forkliftlar,
|
||
},
|
||
];
|
||
|
||
export const excavators: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "crawler-excavators",
|
||
desc: "agreement",
|
||
path: "crawler-excavators",
|
||
image: Paletli,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "wheel-excavators",
|
||
desc: "agreement",
|
||
path: "wheel-excavators",
|
||
image: Balon,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "mini-excavators",
|
||
desc: "agreement",
|
||
path: "mini-excavators",
|
||
image: Mini,
|
||
},
|
||
{
|
||
id: 4,
|
||
truck_name: "excavator-loaders",
|
||
desc: "agreement",
|
||
path: "excavator-loaders",
|
||
image: Digger,
|
||
},
|
||
];
|
||
|
||
export const road_repairs: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "avtograders",
|
||
desc: "agreement",
|
||
path: "avtograders",
|
||
image: Grayder1,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "buldozers",
|
||
desc: "agreement",
|
||
path: "buldozers",
|
||
image: Buldozer,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "katkas",
|
||
desc: "agreement",
|
||
path: "katkas",
|
||
image: Kat,
|
||
},
|
||
{
|
||
id: 4,
|
||
truck_name: "evakuator",
|
||
desc: "agreement",
|
||
path: "evakuator",
|
||
image: Evakuator,
|
||
},
|
||
{
|
||
id: 5,
|
||
truck_name: "asfalt_yotqizuvchi",
|
||
desc: "agreement",
|
||
path: "asfalt_frez",
|
||
image: Aspal_800,
|
||
},
|
||
{
|
||
id: 6,
|
||
truck_name: "vodovoz",
|
||
desc: "agreement",
|
||
path: "vodovoz",
|
||
image: Vodovoz,
|
||
},
|
||
{
|
||
id: 7,
|
||
truck_name: "assenizator",
|
||
desc: "agreement",
|
||
path: "assenizator",
|
||
image: Assenizator,
|
||
},
|
||
];
|
||
|
||
export const allProducts: ProductTypes[] = [
|
||
...trucks,
|
||
...cranes,
|
||
...forklift,
|
||
...excavators,
|
||
...road_repairs,
|
||
];
|
||
|
||
// inner car information by types of trucks
|
||
|
||
//yuk mashinalari
|
||
export const cement_trucks: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Howo1,
|
||
name: "Avtosementavoz Howo 1",
|
||
min_order_time: 4,
|
||
price: 350000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 45, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
tankVolume_m3: 35, // Tank hajmi (m3)
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Howo2_1,
|
||
name: "Avtosementavoz Howo 4",
|
||
min_order_time: 4,
|
||
price: 365000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 45, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
tankVolume_m3: 35, // Tank hajmi (m3)
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Howo3_1,
|
||
name: "Avtosementavoz Howo 5",
|
||
min_order_time: 4,
|
||
price: 370000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 45, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
tankVolume_m3: 35, // Tank hajmi (m3)
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Beton_nasos,
|
||
name: "Beton nasos 37m (Putzmeister M37)",
|
||
min_order_time: 3,
|
||
price: 950000,
|
||
path: "",
|
||
weight_kg: 26000, // 26 tonna
|
||
maxLength_m: 12,
|
||
maxHeight_m: 4,
|
||
fuelType: "Dizel",
|
||
enginePower_hp: "280-320",
|
||
transmission: "Avtomatik",
|
||
pumpLength_m: 37, // 37 metrli quvur
|
||
pumpCapacity_m3h: 120, // 120 m³/soat quvvat
|
||
tankVolume_m3: 0.5, // Yog’ tizimi uchun
|
||
maxSpeed_kmh: 90,
|
||
intercooler: "Bor",
|
||
},
|
||
];
|
||
|
||
export const dumb_trucks: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Kaimei1,
|
||
name: "Kaimei Samasval",
|
||
min_order_time: 3,
|
||
price: 400000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 25, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Chakman2,
|
||
name: "Chakman Samasval",
|
||
min_order_time: 3,
|
||
price: 410000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 25, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Isuzu2,
|
||
name: "Isuzu Samasval",
|
||
min_order_time: 3,
|
||
price: 430000,
|
||
path: "",
|
||
maxLength_m: 11, // Maksimum uzunligi (metr)
|
||
capacity_tons: 25, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Gazel2,
|
||
name: "Gazel mini",
|
||
min_order_time: 2,
|
||
price: 260000,
|
||
path: "",
|
||
maxLength_m: 6, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1.6, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Benzin/Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "120-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 5,
|
||
image: Gazel5,
|
||
name: "Gazel 4x2",
|
||
min_order_time: 2,
|
||
price: 280000,
|
||
path: "",
|
||
maxLength_m: 6, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1.6, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Benzin/Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "120-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const trailers: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Treyler1,
|
||
name: "Treyler XCMG",
|
||
min_order_time: 5,
|
||
price: 500000,
|
||
path: "",
|
||
maxLength_m: 26, // Maksimum uzunligi (metr)
|
||
capacity_tons: 24, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "440-550", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Treyler2,
|
||
name: "Treyler Long",
|
||
min_order_time: 5,
|
||
price: 520000,
|
||
path: "",
|
||
maxLength_m: 26, // Maksimum uzunligi (metr)
|
||
capacity_tons: 24, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "440-550", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Treyler6,
|
||
name: "Treyler Platforma",
|
||
min_order_time: 5,
|
||
price: 560000,
|
||
path: "",
|
||
maxLength_m: 26, // Maksimum uzunligi (metr)
|
||
capacity_tons: 24, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "440-550", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const betonNasoslar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Beton_nasos,
|
||
name: "Beton nasos 37m (Putzmeister M37)",
|
||
min_order_time: 3,
|
||
price: 950000,
|
||
path: "",
|
||
weight_kg: 26000, // 26 tonna
|
||
maxLength_m: 12,
|
||
maxHeight_m: 4,
|
||
fuelType: "Dizel",
|
||
enginePower_hp: "280-320",
|
||
transmission: "Avtomatik",
|
||
pumpLength_m: 37, // 37 metrli quvur
|
||
pumpCapacity_m3h: 120, // 120 m³/soat quvvat
|
||
tankVolume_m3: 0.5, // Yog’ tizimi uchun
|
||
maxSpeed_kmh: 90,
|
||
intercooler: "Bor",
|
||
},
|
||
];
|
||
|
||
//kranlar
|
||
export const avtominora: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Avtolift28,
|
||
name: "Avtolift",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 28,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Avtolift53,
|
||
name: "Avtolift",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 53,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Avtolift53,
|
||
name: "Avtolift",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 63,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Avtovishka28,
|
||
name: "Avtovishka",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 28,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Avtovishka36,
|
||
name: "Avtovishka",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 36,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 5,
|
||
image: Avtovishka45,
|
||
name: "Avtovishka",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 45,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 6,
|
||
image: Avtovishka60,
|
||
name: "Avtovishka",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 60,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 7,
|
||
image: Avtovishka75,
|
||
name: "Avtovishka",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 12000,
|
||
maxHeight_m: 75,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
];
|
||
|
||
export const avtokran: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Kran30,
|
||
name: "Avtokran",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
maxHeight_m: 60,
|
||
capacity_tons: 30000,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-300",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Kran50,
|
||
name: "Avtokran",
|
||
min_order_time: 5,
|
||
price: 620000,
|
||
path: "",
|
||
maxHeight_m: 60,
|
||
capacity_tons: 50000,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Kran75,
|
||
name: "Avtokran",
|
||
min_order_time: 5,
|
||
price: 620000,
|
||
path: "",
|
||
maxHeight_m: 60,
|
||
capacity_tons: 75000,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Kran130,
|
||
name: "Avtokran",
|
||
min_order_time: 5,
|
||
price: 620000,
|
||
path: "",
|
||
maxHeight_m: 60,
|
||
capacity_tons: 130000,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
];
|
||
|
||
export const minora: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: All_cranes,
|
||
name: "Avtominora Kran",
|
||
min_order_time: 5,
|
||
price: 600000,
|
||
path: "",
|
||
weight_kg: 8000 - 10000 - 12000 - 16000,
|
||
maxHeight_m: 60 - 65 - 70 - 75,
|
||
capacity_kg: 500,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 70,
|
||
enginePower_hp: "200-400",
|
||
transmission: "Mexanik/Avtomatik",
|
||
},
|
||
];
|
||
|
||
//forkliftlar
|
||
export const old_yuklagichlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Old_yuklagich_biru8,
|
||
name: "Old Yuklagich GEHL",
|
||
min_order_time: 3,
|
||
price: 350000,
|
||
path: "",
|
||
maxLength_m: 6, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1800, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "300-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Old_yuklagich_3,
|
||
name: "Old Yuklagich Hyundai",
|
||
min_order_time: 3,
|
||
price: 365000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 3000, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Old_yuklagich_mini1,
|
||
name: "Old Yuklagich",
|
||
min_order_time: 3,
|
||
price: 370000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 500, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Old_yuklagich_mini2,
|
||
name: "Old Yuklagich",
|
||
min_order_time: 3,
|
||
price: 370000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 500, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel/Gaz", // Yoqilg'i turi
|
||
maxSpeed_kmh: 130, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "360-400", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Robot", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const teleskop_yuklagichlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Tel1,
|
||
name: "Teleskopik Yuklagich JCB",
|
||
min_order_time: 3,
|
||
price: 400000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Tel2,
|
||
name: "Teleskopik Yuklagich Bobkat",
|
||
min_order_time: 3,
|
||
price: 420000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 0.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Tel3,
|
||
name: "Teleskopik Yuklagich XCMG",
|
||
min_order_time: 3,
|
||
price: 420000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Tel4,
|
||
name: "Teleskopik Yuklagich JCB",
|
||
min_order_time: 3,
|
||
price: 420000,
|
||
path: "",
|
||
maxLength_m: 7, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const forkliftlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Fork1,
|
||
name: "Forklift Mitsubishi",
|
||
min_order_time: 2,
|
||
price: 300000,
|
||
path: "",
|
||
maxLength_m: 5, // Maksimum uzunligi (metr)
|
||
capacity_tons: 2.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-200", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Fork2,
|
||
name: "Forklift Lonking",
|
||
min_order_time: 2,
|
||
price: 310000,
|
||
path: "",
|
||
maxLength_m: 5, // Maksimum uzunligi (metr)
|
||
capacity_tons: 1.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-200", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Fork3,
|
||
name: "Forklift JCB",
|
||
min_order_time: 2,
|
||
price: 320000,
|
||
path: "",
|
||
maxLength_m: 5, // Maksimum uzunligi (metr)
|
||
capacity_tons: 2.5, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 50, // Maksimum tezligi (km/soat)
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
enginePower_hp: "60-200", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
//ekskavatorlar
|
||
export const paletli_eks: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Paletli1,
|
||
name: "Paletli Ekskavator Hyundai",
|
||
min_order_time: 4,
|
||
price: 450000,
|
||
path: "",
|
||
weight_kg: 24000,
|
||
qazish: 6.5,
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
enginePower_hp: "140-180", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Paletli2,
|
||
name: "Paletli Ekskavator XCMG",
|
||
min_order_time: 4,
|
||
price: 470000,
|
||
path: "",
|
||
weight_kg: 24000,
|
||
qazish: 6.5,
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
enginePower_hp: "140-180", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const gildirakli_eks: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Balon1,
|
||
name: "G‘ildirakli Ekskavator GEHL",
|
||
min_order_time: 4,
|
||
price: 440000,
|
||
path: "",
|
||
weight_kg: 22000,
|
||
qazish: 6.5,
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
enginePower_hp: "170-180", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Avtomatik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Balon2,
|
||
name: "G‘ildirakli Ekskavator Lonking",
|
||
min_order_time: 4,
|
||
price: 460000,
|
||
path: "",
|
||
weight_kg: 22000,
|
||
qazish: 6.5,
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
enginePower_hp: "170-180", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Avtomatik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const mini_eks: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Mini1,
|
||
name: "Mini Ekskavator JCB",
|
||
min_order_time: 3,
|
||
price: 400000,
|
||
path: "",
|
||
weight_kg: 4000,
|
||
qazish: 3,
|
||
fuelType: "Dizel/Benzin", // Yoqilg'i turi
|
||
enginePower_hp: "25-40", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Avtomatik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Mini2,
|
||
name: "Mini Ekskavator XCMG",
|
||
min_order_time: 3,
|
||
price: 410000,
|
||
path: "",
|
||
weight_kg: 4000,
|
||
qazish: 3,
|
||
fuelType: "Dizel/Benzin", // Yoqilg'i turi
|
||
enginePower_hp: "25-40", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Avtomatik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const eks_yuklagichlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Digger1,
|
||
name: "Ekskavator Yuklagich Hyundai",
|
||
min_order_time: 3,
|
||
price: 420000,
|
||
path: "",
|
||
weight_kg: 10000,
|
||
qazish: 5,
|
||
fuelType: "160 litr", // Yoqilg'i turi
|
||
enginePower_hp: "90-110", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik/Avtomatik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Digger2,
|
||
name: "Ekskavator Yuklagich Gehl",
|
||
min_order_time: 3,
|
||
price: 430000,
|
||
path: "",
|
||
weight_kg: 10000,
|
||
qazish: 5,
|
||
fuelType: "160 litr", // Yoqilg'i turi
|
||
enginePower_hp: "90-110", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
// yo'l tamiri
|
||
export const avtogreyderlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Grayder1,
|
||
name: "Avtogreyder XCMG",
|
||
min_order_time: 4,
|
||
price: 500000,
|
||
path: "",
|
||
maxLength_m: 20, // Maksimum uzunligi (metr)
|
||
weight_kg: 20000,
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
pichoq: 3 - 4.5,
|
||
maxSpeed_kmh: 40, // Maksimum tezligi (km/soat)
|
||
enginePower_hp: "150-250", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanika", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const buldozerlar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Buldozer1,
|
||
name: "Buldozer Lonking",
|
||
min_order_time: 4,
|
||
price: 520000,
|
||
path: "",
|
||
maxLength_m: 20, // Maksimum uzunligi (metr)
|
||
weight_kg: 70000,
|
||
tankVolume_m3: 300 - 600,
|
||
capacity_tons: 1.6, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
pichoq: 3 - 5,
|
||
enginePower_hp: "200-700", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Buldozer2,
|
||
name: "Buldozer XCMG",
|
||
min_order_time: 4,
|
||
price: 540000,
|
||
path: "",
|
||
maxLength_m: 20, // Maksimum uzunligi (metr)
|
||
weight_kg: 70000,
|
||
tankVolume_m3: 300 - 600,
|
||
capacity_tons: 1.6, // Yuk ko'tarish qobiliyati (tonna)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
pichoq: 3 - 5,
|
||
enginePower_hp: "200-700", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const katkalar: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Katok3,
|
||
name: "Katka JCB",
|
||
min_order_time: 4,
|
||
price: 490000,
|
||
path: "",
|
||
weight_kg: 3000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 2,
|
||
image: Katok4,
|
||
name: "Katka",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 4000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 3,
|
||
image: Katok6,
|
||
name: "Katka",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 6000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Katok10,
|
||
name: "Katka",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 10000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 4,
|
||
image: Katok20,
|
||
name: "Katka",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 20000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 5,
|
||
image: Pnevka_Katok4,
|
||
name: "Pnevma Katok",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 4000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
{
|
||
id: 6,
|
||
image: Pnevka_Katok16,
|
||
name: "Pnevma Katok",
|
||
min_order_time: 4,
|
||
price: 510000,
|
||
path: "",
|
||
weight_kg: 16000,
|
||
tankVolume_m3: 250 - 300,
|
||
intercooler: "Bor", // Interkuler (Bor/Yoq)
|
||
fuelType: "Dizel", // Yoqilg'i turi
|
||
maxSpeed_kmh: 12, // Maksimum tezligi (km/soat)
|
||
zichlash: 2 - 2.5,
|
||
enginePower_hp: "75-150", // Dvigatel quvvati (ot kuchi) — diapazon sifatida
|
||
transmission: "Mexanik", // O'tkazmalar qutisi
|
||
},
|
||
];
|
||
|
||
export const evakuatorDemo: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
name: "Evakuator Gruzavoy",
|
||
image: EvakuatorGruzavoy,
|
||
min_order_time: 2, // soat
|
||
price: 350, // taxminiy narx
|
||
path: "/evakuator/25ton",
|
||
|
||
// Evakuator maxsus xususiyatlar
|
||
towingCapacity_tons: 20, // Max yuk ko‘tarish
|
||
armLength_m: 8, // Armlik uzunligi
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "400",
|
||
maxSpeed_kmh: 90,
|
||
transmission: "Manual",
|
||
tankVolume_m3: 300, // Litra
|
||
weight_kg: 12000,
|
||
},
|
||
{
|
||
id: 2,
|
||
name: "Evakuator kichik 5 tonna yuk mashinasi",
|
||
image: Evakuator5,
|
||
min_order_time: 1, // soat
|
||
price: 200,
|
||
path: "/evakuator/5ton",
|
||
|
||
// Evakuator maxsus xususiyatlar
|
||
towingCapacity_tons: 5,
|
||
armLength_m: 5,
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "180",
|
||
maxSpeed_kmh: 80,
|
||
transmission: "Manual",
|
||
tankVolume_m3: 150,
|
||
weight_kg: 6000,
|
||
},
|
||
{
|
||
id: 3,
|
||
name: "Evakuator o‘rta 20 tonna Kamaz",
|
||
image: Evakuator20,
|
||
min_order_time: 2,
|
||
price: 300,
|
||
path: "/evakuator/20ton",
|
||
|
||
// Evakuator maxsus xususiyatlar
|
||
towingCapacity_tons: 20,
|
||
armLength_m: 7,
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "250",
|
||
maxSpeed_kmh: 85,
|
||
transmission: "Manual",
|
||
tankVolume_m3: 200,
|
||
weight_kg: 10000,
|
||
},
|
||
];
|
||
|
||
export const asfalt: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
name: "Dorojanara 1",
|
||
image: Aspal_800,
|
||
min_order_time: 4,
|
||
price: 500000,
|
||
path: "/asfalt/frezka-1",
|
||
weight_kg: 12000,
|
||
maxLength_m: 8,
|
||
maxHeight_m: 3.5,
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "300",
|
||
maxSpeed_kmh: 15,
|
||
transmission: "Manual",
|
||
pavingWidth_m: 4, // yotqizish kengligi
|
||
pavingDepth_cm: 20, // qatlam chuqurligi
|
||
},
|
||
{
|
||
id: 2,
|
||
name: "Dorojanara 2",
|
||
image: Aspal_1800,
|
||
min_order_time: 4,
|
||
price: 500000,
|
||
path: "/asfalt/frezka-2",
|
||
weight_kg: 13000,
|
||
maxLength_m: 8.5,
|
||
maxHeight_m: 3.7,
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "320",
|
||
maxSpeed_kmh: 16,
|
||
transmission: "Manual",
|
||
pavingWidth_m: 4.2,
|
||
pavingDepth_cm: 22,
|
||
},
|
||
{
|
||
id: 3,
|
||
name: "Asfalt kochiruvchi 1",
|
||
image: Aspal_k,
|
||
min_order_time: 3,
|
||
price: 500000,
|
||
path: "/asfalt/kochiruvchi-1",
|
||
weight_kg: 10000,
|
||
maxLength_m: 10,
|
||
maxHeight_m: 3.5,
|
||
fuelType: "Diesel",
|
||
enginePower_hp: "280",
|
||
maxSpeed_kmh: 25,
|
||
transmission: "Manual",
|
||
conveyorLength_m: 6, // konveyer uzunligi
|
||
conveyorCapacity_tons: 8, // bir marta ko‘chiradigan asfalt
|
||
},
|
||
];
|
||
|
||
// shalanda
|
||
export const shalandaTraller: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
name: "Shalanda 60 tonna",
|
||
image: Shalanda,
|
||
min_order_time: 3,
|
||
price: 1200,
|
||
path: "/truck/shalanda-60t",
|
||
weight_kg: 18000,
|
||
maxLength_m: 15,
|
||
maxHeight_m: 4,
|
||
capacity_tons: 60,
|
||
fuelType: "Diesel", // dvigatel truckga bog‘langan
|
||
maxSpeed_kmh: 90,
|
||
transmission: "Manual",
|
||
enginePower_hp: "—", // bosh qismi truckga bog‘langan
|
||
tankVolume_m3: 0,
|
||
towingCapacity_tons: 60,
|
||
armLength_m: 16,
|
||
wheelCount: 10,
|
||
brakingSystem: "Air brakes",
|
||
},
|
||
{
|
||
id: 2,
|
||
name: "Treller 70 tonna",
|
||
image: Traller,
|
||
min_order_time: 3,
|
||
price: 1500,
|
||
path: "/truck/treller-70t",
|
||
weight_kg: 22000,
|
||
maxLength_m: 17.5,
|
||
maxHeight_m: 4.2,
|
||
capacity_tons: 70,
|
||
fuelType: "Diesel",
|
||
maxSpeed_kmh: 85,
|
||
transmission: "Manual",
|
||
enginePower_hp: "—", // bosh qismi truckga bog‘langan
|
||
tankVolume_m3: 0,
|
||
towingCapacity_tons: 70,
|
||
armLength_m: 17.5,
|
||
wheelCount: 12,
|
||
brakingSystem: "Air brakes",
|
||
},
|
||
];
|
||
|
||
// vodovoz
|
||
export const vodovoz: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Vodovoz, // rasmni o'zingiz qo'yasiz
|
||
name: "Vodovoz 6 m³",
|
||
min_order_time: 2,
|
||
price: 350000,
|
||
path: "",
|
||
tankVolume_m3: 6, // suv sig'imi
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 90,
|
||
enginePower_hp: "150-180",
|
||
transmission: "Mexanik",
|
||
pumpPower_hp: 12, // suv nasosi quvvati
|
||
pumpType: "Markazdan qochma nasos",
|
||
weight_kg: 6500, // mashina og'irligi
|
||
maxLength_m: 6.5,
|
||
},
|
||
];
|
||
|
||
// Assenizator
|
||
export const assenizator: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Assenizator, // rasmni o'zingiz qo'yasiz
|
||
name: "Assenizator 5 m³",
|
||
min_order_time: 2,
|
||
price: 380000,
|
||
path: "",
|
||
tankVolume_m3: 5, // vakuum bak hajmi
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 80,
|
||
enginePower_hp: "140-160",
|
||
transmission: "Mexanik",
|
||
pumpPower_hp: 10, // vakuum nasos quvvati
|
||
pumpType: "Vakuum nasos",
|
||
weight_kg: 7000,
|
||
maxLength_m: 6.2,
|
||
},
|
||
];
|
||
|
||
// manipulyator
|
||
export const manipulyator: innerCardTypes[] = [
|
||
{
|
||
id: 1,
|
||
image: Manipulyator,
|
||
name: "Manipulyator 7 tonna",
|
||
min_order_time: 3,
|
||
price: 450000,
|
||
path: "",
|
||
capacity_tons: 7,
|
||
manipulatorCapacity_tons: 7,
|
||
manipulatorArm_m: 10, // 7t manipulyatorlarda 8–12 m bo‘ladi
|
||
maxLength_m: 7.5,
|
||
weight_kg: 9200,
|
||
fuelType: "Dizel",
|
||
maxSpeed_kmh: 75,
|
||
enginePower_hp: "180-240",
|
||
transmission: "Mexanik/Avtomatik",
|
||
}
|
||
];
|
||
|
||
|
||
// slider data
|
||
export const sliderData: ProductTypes[] = [
|
||
{
|
||
id: 1,
|
||
truck_name: "excavators",
|
||
desc: "news-title1",
|
||
path: "crawler-excavators",
|
||
image: ekskavatorSlider,
|
||
},
|
||
{
|
||
id: 2,
|
||
truck_name: "front-loaders",
|
||
desc: "news-title2",
|
||
path: "front-loaders",
|
||
image: oldYuklagich,
|
||
},
|
||
{
|
||
id: 3,
|
||
truck_name: "compressors",
|
||
desc: "news-title3",
|
||
path: "compressors",
|
||
image: kompressorSlider,
|
||
},
|
||
{
|
||
id: 4,
|
||
truck_name: "compressors",
|
||
desc: "news-title3",
|
||
path: "compressors",
|
||
image: AvtokranSlider,
|
||
},
|
||
];
|