Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created July 4, 2021 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chuloo/3809aae48de401ae193ea1c5f47904d4 to your computer and use it in GitHub Desktop.
Save Chuloo/3809aae48de401ae193ea1c5f47904d4 to your computer and use it in GitHub Desktop.
Shoppable video product data
const data = [
{
id: "forest_bike",
name: "Forest Bike",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914696/0efbcdf473436391b6a5a731a000fadc_rs6z0z.jpg",
price: "$400",
},
{
id: "bike_glove",
name: "Forest Bike Glove",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914746/716FjX82rLL._AC_UL1200__xvrznl.jpg",
price: "$40",
},
{
id: "sea_turtle",
name: "Sea Turtle",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914620/Screenshot_2021-06-05_at_18.36.28_ws0rgm.png",
price: "$4,000",
},
{
id: "raft_helmet",
name: "Rafting Helmet",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914411/download_tji0tf.jpg",
price: "$500",
},
{
id: "raft_paddler",
name: "Raft Paddler",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914410/77106_01_full_062613_1000x1000_dvtvqd.jpg",
price: "$200",
},
{
id: "life_jacket",
name: "Life Jacket",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914385/x-treme-raft_ff6ggn.jpg",
price: "$100",
},
{
id: "raft",
name: "Raft",
imageUrl:
"https://res.cloudinary.com/dwbggi96z/image/upload/v1622914429/nrs-large-raft2-1400x788_nmjiow.jpg",
price: "$2,000",
},
];
export default data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment