Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.65 KB | None | 0 0
  1. const SHOP_DATA = [
  2. {
  3. id: 1,
  4. title: 'Hats',
  5. routeName: 'hats',
  6. items: [
  7. {
  8. id: 1,
  9. name: 'Brown Brim',
  10. imageUrl: 'https://i.ibb.co/ZYW3VTp/brown-brim.png',
  11. price: 25
  12. },
  13. {
  14. id: 2,
  15. name: 'Blue Beanie',
  16. imageUrl: 'https://i.ibb.co/ypkgK0X/blue-beanie.png',
  17. price: 18
  18. },
  19. {
  20. id: 3,
  21. name: 'Brown Cowboy',
  22. imageUrl: 'https://i.ibb.co/QdJwgmp/brown-cowboy.png',
  23. price: 35
  24. },
  25. {
  26. id: 4,
  27. name: 'Grey Brim',
  28. imageUrl: 'https://i.ibb.co/RjBLWxB/grey-brim.png',
  29. price: 25
  30. },
  31. {
  32. id: 5,
  33. name: 'Green Beanie',
  34. imageUrl: 'https://i.ibb.co/YTjW3vF/green-beanie.png',
  35. price: 18
  36. },
  37. {
  38. id: 6,
  39. name: 'Palm Tree Cap',
  40. imageUrl: 'https://i.ibb.co/rKBDvJX/palm-tree-cap.png',
  41. price: 14
  42. },
  43. {
  44. id: 7,
  45. name: 'Red Beanie',
  46. imageUrl: 'https://i.ibb.co/bLB646Z/red-beanie.png',
  47. price: 18
  48. },
  49. {
  50. id: 8,
  51. name: 'Wolf Cap',
  52. imageUrl: 'https://i.ibb.co/1f2nWMM/wolf-cap.png',
  53. price: 14
  54. },
  55. {
  56. id: 9,
  57. name: 'Blue Snapback',
  58. imageUrl: 'https://i.ibb.co/X2VJP2W/blue-snapback.png',
  59. price: 16
  60. }
  61. ]
  62. },
  63. {
  64. id: 2,
  65. title: 'Sneakers',
  66. routeName: 'sneakers',
  67. items: [
  68. {
  69. id: 1,
  70. name: 'Adidas NMD',
  71. imageUrl: 'https://i.ibb.co/0s3pdnc/adidas-nmd.png',
  72. price: 220
  73. },
  74. {
  75. id: 2,
  76. name: 'Adidas Yeezy',
  77. imageUrl: 'https://i.ibb.co/dJbG1cT/yeezy.png',
  78. price: 280
  79. },
  80. {
  81. id: 3,
  82. name: 'Black Converse',
  83. imageUrl: 'https://i.ibb.co/bPmVXyP/black-converse.png',
  84. price: 110
  85. },
  86. {
  87. id: 4,
  88. name: 'Nike White AirForce',
  89. imageUrl: 'https://i.ibb.co/1RcFPk0/white-nike-high-tops.png',
  90. price: 160
  91. },
  92. {
  93. id: 5,
  94. name: 'Nike Red High Tops',
  95. imageUrl: 'https://i.ibb.co/QcvzydB/nikes-red.png',
  96. price: 160
  97. },
  98. {
  99. id: 6,
  100. name: 'Nike Brown High Tops',
  101. imageUrl: 'https://i.ibb.co/fMTV342/nike-brown.png',
  102. price: 160
  103. },
  104. {
  105. id: 7,
  106. name: 'Air Jordan Limited',
  107. imageUrl: 'https://i.ibb.co/w4k6Ws9/nike-funky.png',
  108. price: 190
  109. },
  110. {
  111. id: 8,
  112. name: 'Timberlands',
  113. imageUrl: 'https://i.ibb.co/Mhh6wBg/timberlands.png',
  114. price: 200
  115. }
  116. ]
  117. },
  118. {
  119. id: 3,
  120. title: 'Jackets',
  121. routeName: 'jackets',
  122. items: [
  123. {
  124. id: 1,
  125. name: 'Black Jean Shearling',
  126. imageUrl: 'https://i.ibb.co/XzcwL5s/black-shearling.png',
  127. price: 125
  128. },
  129. {
  130. id: 2,
  131. name: 'Blue Jean Jacket',
  132. imageUrl: 'https://i.ibb.co/mJS6vz0/blue-jean-jacket.png',
  133. price: 90
  134. },
  135. {
  136. id: 3,
  137. name: 'Grey Jean Jacket',
  138. imageUrl: 'https://i.ibb.co/N71k1ML/grey-jean-jacket.png',
  139. price: 90
  140. },
  141. {
  142. id: 4,
  143. name: 'Brown Shearling',
  144. imageUrl: 'https://i.ibb.co/s96FpdP/brown-shearling.png',
  145. price: 165
  146. },
  147. {
  148. id: 5,
  149. name: 'Tan Trench',
  150. imageUrl: 'https://i.ibb.co/M6hHc3F/brown-trench.png',
  151. price: 185
  152. }
  153. ]
  154. },
  155. {
  156. id: 4,
  157. title: 'Womens',
  158. routeName: 'womens',
  159. items: [
  160. {
  161. id: 1,
  162. name: 'Blue Tanktop',
  163. imageUrl: 'https://i.ibb.co/7CQVJNm/blue-tank.png',
  164. price: 25
  165. },
  166. {
  167. id: 2,
  168. name: 'Floral Blouse',
  169. imageUrl: 'https://i.ibb.co/4W2DGKm/floral-blouse.png',
  170. price: 20
  171. },
  172. {
  173. id: 3,
  174. name: 'Floral Dress',
  175. imageUrl: 'https://i.ibb.co/KV18Ysr/floral-skirt.png',
  176. price: 80
  177. },
  178. {
  179. id: 4,
  180. name: 'Red Dots Dress',
  181. imageUrl: 'https://i.ibb.co/N3BN1bh/red-polka-dot-dress.png',
  182. price: 80
  183. },
  184. {
  185. id: 5,
  186. name: 'Striped Sweater',
  187. imageUrl: 'https://i.ibb.co/KmSkMbH/striped-sweater.png',
  188. price: 45
  189. },
  190. {
  191. id: 6,
  192. name: 'Yellow Track Suit',
  193. imageUrl: 'https://i.ibb.co/v1cvwNf/yellow-track-suit.png',
  194. price: 135
  195. },
  196. {
  197. id: 7,
  198. name: 'White Blouse',
  199. imageUrl: 'https://i.ibb.co/qBcrsJg/white-vest.png',
  200. price: 20
  201. }
  202. ]
  203. },
  204. {
  205. id: 5,
  206. title: 'Mens',
  207. routeName: 'mens',
  208. items: [
  209. {
  210. id: 1,
  211. name: 'Camo Down Vest',
  212. imageUrl: 'https://i.ibb.co/xJS0T3Y/camo-vest.png',
  213. price: 325
  214. },
  215. {
  216. id: 2,
  217. name: 'Floral T-shirt',
  218. imageUrl: 'https://i.ibb.co/qMQ75QZ/floral-shirt.png',
  219. price: 20
  220. },
  221. {
  222. id: 3,
  223. name: 'Black & White Longsleeve',
  224. imageUrl: 'https://i.ibb.co/55z32tw/long-sleeve.png',
  225. price: 25
  226. },
  227. {
  228. id: 4,
  229. name: 'Pink T-shirt',
  230. imageUrl: 'https://i.ibb.co/RvwnBL8/pink-shirt.png',
  231. price: 25
  232. },
  233. {
  234. id: 5,
  235. name: 'Jean Long Sleeve',
  236. imageUrl: 'https://i.ibb.co/VpW4x5t/roll-up-jean-shirt.png',
  237. price: 40
  238. },
  239. {
  240. id: 6,
  241. name: 'Burgundy T-shirt',
  242. imageUrl: 'https://i.ibb.co/mh3VM1f/polka-dot-shirt.png',
  243. price: 25
  244. }
  245. ]
  246. }
  247. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement