-
Notifications
You must be signed in to change notification settings - Fork 14
/
products.js
60 lines (59 loc) · 3.53 KB
/
products.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
57
58
59
60
const products = [
{
"id": 1,
"name":" LD01 LOUNGE CHAIR",
"price": 200,
"image": "images/1.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 2,
"name":" LD02 LOUNGE CHAIR",
"price": 250,
"image": "images/2.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 3,
"name":" LD03 LOUNGE CHAIR",
"price": 290,
"image": "images/3.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 4,
"name":" LD04 LOUNGE CHAIR",
"price": 200,
"image": "images/4.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 5,
"name":" LD05 LOUNGE CHAIR",
"price": 300,
"image": "images/5.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 6,
"name":" LD06 LOUNGE CHAIR",
"price": 200,
"image": "images/6.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 7,
"name":" LD07 LOUNGE CHAIR",
"price": 200,
"image": "images/7.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
},
{
"id": 8,
"name":" LD08 LOUNGE CHAIR",
"price": 200,
"image": "images/8.png",
"description": "Expertly rendered by Carl Hansen & Søn, the lounge chair—first introduced in 1951 and enduring ever since—is available in oak or as a combination of oak and walnut, sourced from sustainable forestry. Choose from seat and back upholstery in a selection of leather options or in a custom fabric."
}
];
export default products;