-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathServiceData.jsx
48 lines (47 loc) · 1.16 KB
/
ServiceData.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
import Service1 from './img/Service1.png'
import Service2 from './img/Service2.png'
import Service3 from './img/Service3.png'
import Service4 from './img/Service4.png'
import Service5 from './img/Service5.webp'
import Service6 from './img/Service6.png'
const ServiceData = [
{
id: 1,
src: Service1,
title: 'Best Steels',
desc: 'We will provide you the best quality steels for your dream projects',
},
{
id: 2,
src: Service2,
title: 'Best Cements',
desc:
'We will provide you the best quality Cements for your dream projects',
},
{
id: 3,
src: Service3,
title: 'Best Paints',
desc: 'We will provide you the best quality Paints for your dream projects',
},
{
id: 4,
src: Service4,
title: 'Best support',
desc:
'We will provide you the life time support after building your dream projects',
},
{
id: 5,
src: Service5,
title: 'Best workers',
desc: 'We have the best workers to build your projects',
},
{
id: 6,
src: Service6,
title: 'Best Technologies',
desc: 'We will use all the latest technologies to build your dream project',
},
]
export default ServiceData