-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
55 lines (53 loc) · 1.08 KB
/
data.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
// Slider images
export const heroSliderImages = [
{
id: "1",
src: "/images/slider/img-1.png",
title: "Awaken to a different world",
},
{
id: "2",
src: "/images/slider/img-3.png",
title: "The world of imagination"
},
{
id: "3",
src: "/images/slider/img-2.png",
title: "Experience the beauty of nature"
}
];
export const homePageCategories = [
{
id: 1,
title: "Kerala",
src: "/images/categories/kerala.jpg",
count: '5,467'
},
{
id: 2,
title: "Kashmir",
src: "/images/categories/kashmir.jpg",
count: '87,565'
},
{
id: 3,
title: "Mysor",
src: "/images/categories/mysor.jpg",
count: '2,3434'
},
{
id: 4,
title: "Shimla",
src: "/images/categories/shimla.jpg",
count: '2,534'
}
];
export const touristPackages = [
{
id: 1,
name: "Kashmir Honeymoon Package",
days: 6,
nights: 5,
departs: "Srinagar"
}
]