-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
112 lines (98 loc) · 2.45 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
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
110
111
const data = [
{
key:"01",
name:"Hay Bike",
description: "Mountain Bike with wide tires",
price:1200,
img:"https://i.ibb.co/LQmjCh8/01.jpg",
catagory: "Mountain"
},
{
key:"02",
name:"Canyon",
description: "Bike with both electric and regular operation",
price:3200,
img:"https://i.ibb.co/y4ZgNL3/02.jpg",
catagory: "Hybrid"
},
{
key:"03",
name:"Peggeusi",
description: "Tour bike for daily drive. Smooth and comfy",
price:1300,
img:"https://i.ibb.co/JKjFT1n/03.jpg",
catagory: "Tour"
},
{
key:"04",
name:"Ivory Light",
description: "Light wight fast bike",
price:5000,
img:"https://i.ibb.co/ZWsFfkw/04.jpg",
catagory: "Race"
},
{
key:"05",
name:"Hunt",
description: "Road bike for long drive hunter",
price:2500,
img:"https://i.ibb.co/FzMkGP2/05.jpg",
catagory: "Tour"
},
{
key:"06",
name:"Pheonix",
description: "A comfortable tour bike for easy commute",
price:900,
img:"https://i.ibb.co/dkWWdD3/06.jpg",
catagory: "Tour"
},
{
key:"07",
name:"Brownies",
description: "A comfortable tour bike for easy commute",
price:1500,
img:"https://i.ibb.co/T8st97Y/07.jpg",
catagory: "Tour"
},
{
key:"08",
name:"Lightning Rod",
description: "Perfect bike for a long group ride",
price:2800,
img:"https://i.ibb.co/TW0WfQX/08.jpg",
catagory: "Tour"
},
{
key:"09",
name:"Redox",
description: "Winter biking for snowing mountain",
price:4500,
img:"https://i.ibb.co/jkQTLZf/09.jpg",
catagory: "Snow"
},
{
key:"10",
name:"BMX-15",
description: "Snow bike with wide tires.",
price:2600,
img:"https://i.ibb.co/f1RhVp1/10.jpg",
catagory: "Snow"
},
{
key:"11",
name:"Argon 18",
description: "Race like no tomorrow. Light weight",
price:5500,
img:"https://i.ibb.co/LzfQwXs/11.jpg",
catagory: ""
},
{
key:"12",
name:"Pheonix 86",
description: "Simple Daily driver",
price:600,
img:"https://i.ibb.co/F4DtZ7X/12.jpg",
catagory: "Tour"
},
]