-
Notifications
You must be signed in to change notification settings - Fork 1
/
products.ts
58 lines (58 loc) · 2.03 KB
/
products.ts
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
export const products = [
{
id: 1,
name: "TOTE BAG MEDIUM",
price: "$315",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/B/T/BTMGRRV2.jpg",
},
{
id: 2,
name: "ZIP PACK",
price: "$330",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/Z/P/ZPKSAGV3_7.jpg",
},
{
id: 3,
name: "WASTED Diary",
price: "$45",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/K/A/KATIETREGGIDEN_1_2.jpg",
},
{
id: 4,
name: "Laptop Sleeve",
price: "$130",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/L/S/LS15BLLV1.jpg",
},
{
id: 5,
name: "Shoe Bag",
price: "$25",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/S/H/SHBGRYV1.jpg",
},
{
id: 6,
name: "Simple Office Bag",
price: "$180",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/S/P/SPOWGRV4_6.jpg",
},
{
id: 7,
name: "Pencil Bag",
price: "$20",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/P/C/PCCOWBV1.jpg",
},
{
id: 8,
name: "Travel Wallet",
price: "$95",
imageSrc:
"https://res.cloudinary.com/qwstion/image/fetch/w_800,q_60,f_auto/https://www.qwstion.com/media/catalog/product/cache/bb7b605a5c689de5677bfd6236820d4f/T/L/TLWORDV1_2.jpg",
},
];