-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
58 lines (58 loc) · 3.14 KB
/
db.json
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
{
"vans": [
{
"id": 1,
"price": "10",
"name": "Modest Explorer",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/modest-explorer.png",
"description": "The Modest Explorer is a van designed to get you out of the house and into nature. This beauty is equipped with solar panels, a composting toilet, a water tank and kitchenette. The idea is that you can pack up your home and escape for a weekend or even longer!",
"type": "Simple",
"hostId": "123"
},
{
"id": 2,
"price": "50",
"name": "Beach Bum",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/beach-bum.png",
"description": "Beach Bum is a van inspired by surfers and travelers. It was created to be a portable home away from home, but with some cool features in it you won't find in an ordinary camper.",
"type": "Rugged",
"hostId": "456"
},
{
"id": 3,
"price": "80",
"name": "Reliable Red",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/reliable-red.png",
"description": "Reliable Red is a van that was made for travelling. The inside is comfortable and cozy, with plenty of space to stretch out in. There's a small kitchen, so you can cook if you need to. You'll feel like home as soon as you step out of it.",
"type": "Luxury",
"hostId": "789"
},
{
"id": 4,
"price": "30",
"name": " Dreamfinder",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/dreamfinder.png",
"description": "Dreamfinder is the perfect van to travel in and experience. With a ceiling height of 2.1m, you can stand up in this van and there is great head room. The floor is a beautiful glass-reinforced plastic (GRP) which is easy to clean and very hard wearing. A large rear window and large side windows make it really light inside and keep it well ventilated.",
"type": "Simple",
"hostId": "456"
},
{
"id": 5,
"price": "100",
"name": "The Cruiser",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/the-cruiser.png",
"description": "The Cruiser is a van for those who love to travel in comfort and luxury. With its many windows, spacious interior and ample storage space, the Cruiser offers a beautiful view wherever you go.",
"type": "Luxury",
"hostId": "123"
},
{
"id": 6,
"price": "110",
"name": "Green Wonder",
"imageUrl": "https://assets.scrimba.com/advanced-react/react-router/green-wonder.png",
"description": "With this van, you can take your travel life to the next level. The Green Wonder is a sustainable vehicle that's perfect for people who are looking for a stylish, eco-friendly mode of transport that can go anywhere.",
"type": "Rugged",
"hostId": "789"
}
]
}