-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.jsx
144 lines (139 loc) · 3.68 KB
/
data.jsx
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// Hero Images imports
import clockIcon from './src/assets/Icon.png';
import msgIcon from './src/assets/Icon (2).png';
import phoneIcon from './src/assets/Icon (1).png';
// WhatWeDo component images imports
import icon1 from './src/assets/Icon.svg';
import icon2 from './src/assets/Icon (3).png';
import icon3 from './src/assets/Icon (4).png';
import icon4 from './src/assets/Icon (5).png';
// ImageBox component images imports
import img1 from './src/assets/Photo (2).png';
import img2 from './src/assets/Photo (3).png';
import img3 from './src/assets/Photo (4).png';
import img4 from './src/assets/Photo (5).png';
import img5 from './src/assets/Photo (6).png';
// Testimonial component images imports
import testmImage1 from './src/assets/User.png';
import testmImage2 from './src/assets/User (1).png';
import starIcon from './src/assets/Star 5.png';
// HeroSection data
const now = new Date();
const nowDay = now.toString().split(' ')[0];
let isClosed;
now.getHours() < 9 || now.getHours() > 18 || now.getDay() === 0
? (isClosed = 'Closed')
: (isClosed = 'Open');
export const headerDetails = [
{
id: 1,
text: 'Mon - Sat 9:00 - 18:00',
details: `${nowDay} ( ${isClosed} )`,
icon: clockIcon,
},
{
id: 2,
text: 'Email',
details: 'contact@logistics.com',
icon: msgIcon,
},
{
id: 3,
text: 'Call Us',
details: '(00) 112 365 485',
icon: phoneIcon,
},
];
// WhatWeDo data
export const aboutData = [
{
id: 1,
icon: icon2,
header: 'Sea Transport Services',
parag:
'Following the quality of our service thus having gained trust of our many clients.',
},
{
id: 2,
icon: icon3,
header: 'Warehousing Services',
parag:
'Following the quality of our service thus having gained trust of our many clients.',
},
{
id: 3,
icon: icon1,
header: 'Air Fright Services',
parag:
'Following the quality of our service thus having gained trust of our many clients.',
},
{
id: 4,
icon: icon4,
header: 'Local Shipping Services',
parag:
'Following the quality of our service thus having gained trust of our many clients.',
},
];
// Projects Component data
export const projectData = [
{
id: 1,
image: img1,
header: 'Liquid Transportation',
text: 'Premium Tankers',
},
{
id: 2,
image: img2,
header: 'Packaging Solutions',
text: 'Warehouse Management',
},
{
id: 3,
image: img3,
header: 'Contract Logistics',
text: 'Road Transportation',
},
{
id: 4,
image: img4,
header: 'Warehouse & Distribution',
text: 'Large Warehouse',
},
{
id: 5,
image: img5,
header: 'Specialized Transport',
text: 'Ocean Transports',
},
];
// Testimonial data
export const testmData = [
{
id: 1,
img: testmImage1,
name: 'Kathieen Smith',
company: 'Fuel Company',
testimonial:
'Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.',
star: starIcon,
bgColor: 'sec-1',
paragColor: 'sec-3',
headColor: 'prim-2',
bold: true,
},
{
id: 2,
img: testmImage2,
name: 'John Marlin',
company: 'Restoration Company',
testimonial:
'Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.',
star: starIcon,
bgColor: 'prim-2',
paragColor: 'white',
headColor: 'white',
bold: false,
},
];