Advertisement
Guest User

Untitled

a guest
Aug 13th, 2022
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const products = [
  2.     {
  3.         id: 1,
  4.         name: "Hoodie",
  5.         price: 9.99,
  6.         description: "Men's Hoodie",
  7.         image: "/images/products/1.jpg",
  8.         link: "/store/1"
  9.     },
  10.     {
  11.         id: 2,
  12.         name: "Jacket",
  13.         price: 9.99,
  14.         description: "Men's Jacket",
  15.         image: "/images/products/2.jpg",
  16.         link: "/store/2"
  17.     },
  18.     {
  19.         id: 3,
  20.         name: "Pants",
  21.         price: 9.99,
  22.         description: "Men's Pants",
  23.         image: "/images/products/3.jpg",
  24.         link: "/store/3"
  25.     },
  26.     {
  27.         id: 4,
  28.         name: "Shirt",
  29.         price: 9.99,
  30.         description: "Men's Shirt",
  31.         image: "/images/products/4.jpg",
  32.         link: "/store/4"
  33.     },
  34.     {
  35.         id: 5,
  36.         name: "Shorts",
  37.         price: 9.99,
  38.         description: "Men's Shorts",
  39.         image: "/images/products/5.jpg",
  40.         link: "/store/5"
  41.     }
  42. ];
  43.  
  44. export default products;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement