forked from typicode/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
109 lines (109 loc) · 5.34 KB
/
db.json
File metadata and controls
109 lines (109 loc) · 5.34 KB
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
{
"users": [
{
"id": 1,
"name": "agata@wp.pl",
"password": "Agataagata"
},
{
"id": 2,
"name": "kasia@wp.pl",
"password": "Kasiakasia"
}],
"rooms": [
{
"id": 1,
"name": "Single Standard",
"beds": 1,
"guests": 1,
"price": 170,
"img": "https://images.pexels.com/photos/7031718/pexels-photo-7031718.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"description": "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)."
},
{
"id": 2,
"name": "Double Standard",
"beds": 1,
"guests": 2,
"price": 240,
"img": "https://images.pexels.com/photos/7031711/pexels-photo-7031711.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"description": "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)."
},
{
"id": 3,
"name": "Family Comfort",
"beds": 2,
"guests": 3,
"price": 290,
"img": "https://images.pexels.com/photos/6782578/pexels-photo-6782578.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"description": "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)."
},
{
"id": 4,
"name": "Family Comfort LUX",
"beds": 2,
"guests": 4,
"price": 340,
"img": "https://images.pexels.com/photos/7031720/pexels-photo-7031720.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"description": "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like)."
}
],
"treatments": [
{
"id": 1,
"img": "https://images.pexels.com/photos/7365407/pexels-photo-7365407.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Body massage",
"area": "back",
"time": 30,
"price": 80
},
{
"id": 2,
"img": "https://images.pexels.com/photos/3764570/pexels-photo-3764570.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Face mask",
"area": "back",
"time": 20,
"price": 70
},
{
"id": 3,
"img": "https://images.pexels.com/photos/6634657/pexels-photo-6634657.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Peeling",
"area": "face",
"time": 15,
"price": 50
},
{
"id": 4,
"img": "https://images.pexels.com/photos/4963840/pexels-photo-4963840.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Pedicure",
"area": "legs",
"time": 25,
"price": 100
},
{
"id": 5,
"img": "https://images.pexels.com/photos/7755653/pexels-photo-7755653.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Manicure",
"area": "hands",
"time": 45,
"price": 150
},
{
"id": 6,
"img": "https://images.pexels.com/photos/6621191/pexels-photo-6621191.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Hot bathtube",
"area": "body",
"time": 60,
"price": 200
},
{
"id": 7,
"img": "https://images.pexels.com/photos/725998/pexels-photo-725998.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1",
"name": "Wax depilation",
"area": "body",
"time": 45,
"price": 120
}
]
}