-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdata.js
56 lines (53 loc) · 1.21 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
56
export const places = [
{ name: "Bengaluru", time: 3 },
{ name: "Puducherry", time: 3 },
{ name: "Kodaikannal", time: 3.5 },
{ name: "Mysuru", time: 4 },
{ name: "Chennai", time: 4.5 },
{ name: "Kochi", time: 6 },
{ name: "Ooty", time: 3.5 },
{ name: "Trivandrum", time: 7.5 },
];
export const live = {
title: "Live anywhere",
items: [
{
title: "Outdoor getaways",
img: "1.jpg",
},
{
title: "Unique stays",
img: "2.jpg",
},
{
title: "Entire homes",
img: "3.jpg",
},
{
title: "Pets allowed",
img: "4.jpg",
},
],
urlPrefix: "/images/live/",
};
export const discover = {
title: "Discover things to do",
items: [
{
title: "Featured collection: Wanderlust",
p: "Travel from home with Online Experiences.",
img: "1.jpg",
},
{
title: "Online Experiences",
p: "Live, interactive activities led by Hosts.",
img: "2.jpg",
},
{
title: "Experiences",
p: "Find unforgettable activities near you.",
img: "3.jpg",
},
],
urlPrefix: "/images/discover/",
};