-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarData.js
127 lines (124 loc) · 3.58 KB
/
carData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// carData.js
const cars = [
{
make: 'Toyota',
model: 'Camry',
year: 2020,
color: 'Red',
description: 'A reliable Toyota Camry with great fuel efficiency.',
image_url: 'http://example.com/toyota_camry.jpg'
},
{
make: 'Ford',
model: 'Mustang',
year: 2021,
color: 'Blue',
description: 'A classic American muscle car.',
image_url: 'http://example.com/ford_mustang.jpg'
},
{
make: 'Honda',
model: 'Civic',
year: 2019,
color: 'Black',
description: 'A compact car with a reputation for reliability.',
image_url: 'http://example.com/honda_civic.jpg'
},
{
make: 'Chevrolet',
model: 'Impala',
year: 2018,
color: 'White',
description: 'A full-size car with a smooth ride and spacious interior.',
image_url: 'http://example.com/chevrolet_impala.jpg'
},
{
make: 'BMW',
model: 'X5',
year: 2022,
color: 'Silver',
description: 'A luxury SUV with a powerful engine and advanced features.',
image_url: 'http://example.com/bmw_x5.jpg'
},
{
make: 'Mercedes-Benz',
model: 'C-Class',
year: 2021,
color: 'Gray',
description: 'A stylish and luxurious sedan with top-notch features.',
image_url: 'http://example.com/mercedes_c_class.jpg'
},
{
make: 'Tesla',
model: 'Model 3',
year: 2021,
color: 'Blue',
description: 'An electric car with cutting-edge technology and performance.',
image_url: 'http://example.com/tesla_model_3.jpg'
},
{
make: 'Audi',
model: 'A4',
year: 2020,
color: 'Red',
description: 'A compact executive car with excellent performance and luxury.',
image_url: 'http://example.com/audi_a4.jpg'
},
{
make: 'Nissan',
model: 'Altima',
year: 2019,
color: 'Silver',
description: 'A midsize sedan with a comfortable ride and modern features.',
image_url: 'http://example.com/nissan_altima.jpg'
},
{
make: 'Hyundai',
model: 'Elantra',
year: 2020,
color: 'White',
description: 'A compact car with great value and reliability.',
image_url: 'http://example.com/hyundai_elantra.jpg'
},
{
make: 'Mazda',
model: 'CX-5',
year: 2021,
color: 'Black',
description: 'A compact SUV with a sporty design and excellent handling.',
image_url: 'http://example.com/mazda_cx5.jpg'
},
{
make: 'Volkswagen',
model: 'Jetta',
year: 2019,
color: 'Blue',
description: 'A compact car with a refined interior and smooth ride.',
image_url: 'http://example.com/vw_jetta.jpg'
},
{
make: 'Subaru',
model: 'Outback',
year: 2020,
color: 'Green',
description: 'A versatile and rugged SUV with all-wheel drive.',
image_url: 'http://example.com/subaru_outback.jpg'
},
{
make: 'Kia',
model: 'Sorento',
year: 2021,
color: 'Gray',
description: 'A midsize SUV with a comfortable interior and advanced features.',
image_url: 'http://example.com/kia_sorento.jpg'
},
{
make: 'Lexus',
model: 'RX 350',
year: 2021,
color: 'Silver',
description: 'A luxury SUV with a smooth ride and elegant design.',
image_url: 'http://example.com/lexus_rx350.jpg'
}
];
export default cars;