forked from alexisnovas/autoverse-cars-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.ts
101 lines (98 loc) · 2.1 KB
/
constants.ts
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
export const manufacturers = [
"Acura",
"Alfa Romeo",
"Aston Martin",
"Audi",
"Bentley",
"BMW",
"Buick",
"Cadillac",
"Chevrolet",
"Chrysler",
"Citroen",
"Dodge",
"Ferrari",
"Fiat",
"Ford",
"GMC",
"Honda",
"Hyundai",
"Infiniti",
"Jaguar",
"Jeep",
"Kia",
"Lamborghini",
"Land Rover",
"Lexus",
"Lincoln",
"Maserati",
"Mazda",
"McLaren",
"Mercedes-Benz",
"MINI",
"Mitsubishi",
"Nissan",
"Porsche",
"Ram",
"Rolls-Royce",
"Subaru",
"Tesla",
"Toyota",
"Volkswagen",
"Volvo",
];
export const yearsOfProduction = [
{ title: "Year", value: "" },
{ title: "2015", value: "2015" },
{ title: "2016", value: "2016" },
{ title: "2017", value: "2017" },
{ title: "2018", value: "2018" },
{ title: "2019", value: "2019" },
{ title: "2020", value: "2020" },
{ title: "2021", value: "2021" },
{ title: "2022", value: "2022" },
{ title: "2023", value: "2023" },
];
export const fuels = [
{
title: "Fuel",
value: "",
},
{
title: "Gas",
value: "Gas",
},
{
title: "Electricity",
value: "Electricity",
},
];
export const footerLinks = [
{
title: "About",
links: [
{ title: "How it works", url: "/" },
{ title: "Featured", url: "/" },
{ title: "Partnership", url: "/" },
{ title: "Bussiness Relation", url: "/" },
],
},
{
title: "Company",
links: [
{ title: "Events", url: "/" },
{ title: "Blog", url: "/" },
{ title: "Podcast", url: "/" },
{ title: "Invite a friend", url: "/" },
],
},
{
title: "Socials",
links: [
{ title: "Discord", url: "/" },
{ title: "Instagram", url: "/" },
{ title: "Twitter", url: "/" },
{ title: "Facebook", url: "/" },
],
},
];