-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
64 lines (64 loc) · 1.48 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
59
60
61
62
63
64
{
"products": [
{
"id": 1,
"title": "The Dartboard",
"description":"Let everyone know your pin point precision with this bulls-eye.",
"price": 180,
"imgURL":"/assets/dartboard.jpeg"
},
{
"id": 2,
"title": "The Donut",
"description":"Get an ace in the donut hole with this fabulous dress",
"price": 58.99,
"imgURL":"/assets/donut.jpg"
},
{
"id": 3,
"title": "The Nature Lover",
"description":"Become one with nature in this beautifull garment",
"price": 251.20,
"imgURL":"/assets/fir.jpg"
},
{
"id": 4,
"title": "The Square",
"description":"Taking 'Be there or be square' to the next level",
"price": 90.90,
"imgURL":"/assets/square.jpg"
},
{
"id": 5,
"title": "The Breakfast Club",
"description":"Want to make sure everyone knows you're a basic white girl? You can, with this avocado dress!",
"price": 99.99,
"imgURL":"/assets/avocado.jpg"
},
{
"id": 6,
"title": "The Obvious",
"description":"Well, euhm... does this need a description?",
"price": 69.69,
"imgURL":"/assets/well.jpg"
}
],
"shipping": [
{
"id": 1,
"name":"B-Post",
"price":0,
"delivery": "7-10 working days"
},{
"id": 2,
"name":"PostNL",
"price":3,
"delivery": "3-5 working days"
},{
"id": 3,
"name":"DHL",
"price":5,
"delivery": "Next day delivery"
}
]
}