Skip to content

Instantly share code, notes, and snippets.

@basir
Created January 10, 2025 06:55
Show Gist options
  • Save basir/583d7a665da64884f817fa760f80d613 to your computer and use it in GitHub Desktop.
Save basir/583d7a665da64884f817fa760f80d613 to your computer and use it in GitHub Desktop.
data.ts
import { Data, IProductInput } from '@/types'
import { toSlug } from './utils'
const products: IProductInput[] = [
// T-Shirts
{
name: 'Nike Mens Slim-fit Long-Sleeve T-Shirt',
slug: toSlug('Nike Mens Slim-fit Long-Sleeve T-Shirt'),
category: 'T-Shirts',
images: ['/images/p11-1.jpg', '/images/p11-2.jpg'],
tags: ['new-arrival'],
isPublished: true,
price: 21.8,
listPrice: 0,
brand: 'Nike',
avgRating: 4.71,
numReviews: 7,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 2 },
{ rating: 5, count: 5 },
],
numSales: 9,
countInStock: 11,
description:
'Made with chemicals safer for human health and the environment',
sizes: ['S', 'M', 'L', 'XL', 'XXL'],
colors: ['Green', 'Red', 'Black'],
reviews: [],
},
{
name: 'Jerzees Long-Sleeve Heavyweight Blend T-Shirt',
slug: toSlug('Jerzees Long-Sleeve Heavyweight Blend T-Shirt'),
category: 'T-Shirts',
images: [
'/images/p12-1.jpg',
'/images/p12-2.jpg',
'/images/p12-3.jpg',
'/images/p12-4.jpg',
],
tags: ['featured'],
isPublished: true,
price: 23.78,
listPrice: 0,
brand: 'Jerzees',
avgRating: 4.2,
numReviews: 10,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
numSales: 29,
countInStock: 12,
description:
'Made with sustainably sourced USA grown cotton; Shoulder-to-shoulder tape; double-needle coverstitched front neck; Set-in sleeves; Rib cuffs with concealed seams; Seamless body for a wide printing area',
sizes: ['S', 'M', 'L', 'XL', 'XXL'],
colors: ['Yellow', 'Red', 'Black'],
reviews: [],
},
{
name: "Jerzees Men's Long-Sleeve T-Shirt",
slug: toSlug('Jerzees Men Long-Sleeve T-Shirt'),
category: 'T-Shirts',
brand: 'Jerzees',
images: ['/images/p13-1.jpg', '/images/p13-2.jpg'],
tags: ['best-seller'],
isPublished: true,
price: 13.86,
listPrice: 16.03,
avgRating: 4,
numReviews: 12,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 2 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
numSales: 55,
countInStock: 13,
description:
'The Jerzees long sleeve t-shirt is made with dri-power technology that wicks away moisture to keep you cool and dry throughout your day. We also included a rib collar and cuffs for added durability, and a lay-flat collar for comfort. If you are looking for a versatile shirt that you can wear throughout the transitioning seasons, then look no further.',
sizes: ['XL', 'XXL'],
colors: ['Green', 'White'],
reviews: [],
},
{
name: 'Decrum Mens Plain Long Sleeve T-Shirt - Comfortable Soft Fashion V Neck Full Sleeves Jersey Shirts',
slug: toSlug(
'Decrum Mens Plain Long Sleeve T-Shirt - Comfortable Soft Fashion V Neck Full Sleeves Jersey Shirts'
),
category: 'T-Shirts',
brand: 'Jerzees',
images: ['/images/p14-1.jpg', '/images/p14-2.jpg'],
tags: ['todays-deal'],
isPublished: true,
price: 26.95,
listPrice: 46.03,
avgRating: 3.85,
numReviews: 14,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
numSales: 54,
countInStock: 14,
description:
'Elevate your outfit with this soft long sleeve t shirt men. This full sleeves tee is the ultimate upgrade from your regular cotton t-shirt. ',
sizes: ['XL', 'XXL'],
colors: ['Yellow', 'White'],
reviews: [],
},
{
name: "Muscle Cmdr Men's Slim Fit Henley Shirt Long&Short Business Sleeve Casual 3 Metal Buton Placket Casual Stylish T-Shirt",
slug: toSlug(
"Muscle Cmdr Men's Slim Fit Henley Shirt Long&Short Business Sleeve Casual 3 Metal Buton Placket Casual Stylish T-Shirt"
),
category: 'T-Shirts',
brand: ' Muscle Cmdr',
images: ['/images/p15-1.jpg', '/images/p15-2.jpg'],
tags: ['new-arrival', 'featured'],
isPublished: true,
price: 29.99,
listPrice: 35.99,
avgRating: 3.66,
numReviews: 15,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
numSales: 54,
countInStock: 15,
description:
"Slim Fit Design:Men's Muscle Slim Fit Button Henley Shirts are designed to fit snugly against your body, accentuating your muscles and creating a sleek silhouette that's perfect for any occasion. ",
sizes: ['XL', 'XXL'],
colors: ['Green', 'Yellow'],
reviews: [],
},
{
name: 'Hanes Mens Long Sleeve Beefy Henley Shirt',
slug: toSlug('Hanes Mens Long Sleeve Beefy Henley Shirt'),
category: 'T-Shirts',
brand: 'Jerzees',
images: ['/images/p16-1.jpg', '/images/p16-2.jpg'],
tags: ['best-seller', 'todays-deal'],
isPublished: true,
price: 25.3,
listPrice: 32.99,
avgRating: 3.46,
numReviews: 13,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 3 },
],
countInStock: 16,
numSales: 56,
description:
'Heavyweight cotton (Heathers are 60% cotton/40% polyester; Pebblestone is 75% cotton/25% polyester)',
sizes: ['XL', 'XXL'],
colors: ['Grey', 'White'],
reviews: [],
},
// Jeans
{
name: 'Silver Jeans Co. Mens Jace Slim Fit Bootcut Jeans',
slug: toSlug('Silver Jeans Co. Mens Jace Slim Fit Bootcut Jeans'),
category: 'Jeans',
brand: 'Silver Jeans Co',
images: ['/images/p21-1.jpg', '/images/p21-2.jpg'],
tags: ['new-arrival'],
isPublished: true,
price: 95.34,
listPrice: 0,
avgRating: 4.71,
numReviews: 7,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 2 },
{ rating: 5, count: 5 },
],
countInStock: 54,
numSales: 21,
description:
'Silver Jeans Co. Jace Slim Fit Bootcut Jeans - Consider Jace a modern cowboy jean. It sits below the waist and features a slim fit through the hip and thigh. Finished with an 18” bootcut leg opening that complements the slimmer silhouette while still fitting over boots',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Blue', 'Grey'],
reviews: [],
},
{
name: "Levi's mens 505 Regular Fit Jeans (Also Available in Big & Tall)",
slug: toSlug(
"Levi's mens 505 Regular Fit Jeans (Also Available in Big & Tall)"
),
category: 'Jeans',
brand: "Levi's",
images: ['/images/p22-1.jpg', '/images/p22-2.jpg'],
tags: ['featured'],
isPublished: true,
price: 59.99,
listPrice: 69.99,
avgRating: 4.2,
numReviews: 10,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 22,
numSales: 54,
description:
'A veritable classic, this 505 is made to have a comfortable look and style.',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Blue', 'Grey'],
reviews: [],
},
{
name: 'Essentials Mens Straight-Fit Stretch Jean',
slug: toSlug('Essentials Mens Straight-Fit Stretch Jean'),
category: 'Jeans',
brand: 'Essentials',
images: ['/images/p23-1.jpg', '/images/p23-2.jpg'],
tags: ['best-seller'],
isPublished: true,
price: 38.9,
listPrice: 45,
avgRating: 4,
numReviews: 12,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 2 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 23,
numSales: 54,
description:
'These classic 5-pocket straight-fit jeans are crafted with a bit of stretch for additional comfort and to help maintain their shape',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Grey', 'Blue'],
reviews: [],
},
{
name: "Buffalo David Bitton Mens Men's Driven Relaxed Denim JeansJeans",
slug: toSlug(
"Buffalo David Bitton Mens Men's Driven Relaxed Denim JeansJeans"
),
category: 'Jeans',
brand: 'Buffalo David Bitton',
images: ['/images/p24-1.jpg', '/images/p24-2.jpg'],
tags: ['todays-deal'],
isPublished: true,
price: 69.99,
listPrice: 100,
avgRating: 3.85,
numReviews: 14,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 24,
numSales: 53,
description:
'Stretch recycled denim jeans in an authentic and sanded wash blue. Features a comfortable low-rise waist with a relaxed fit at the leg. The distressed look gives these jeans an effortlessly worn-in feel. The eco-friendly logo patch in tan and red is at the back waistband. The signature maple leaf graphic is debossed at the zip-fly.',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Blue', 'Grey'],
reviews: [],
},
{
name: 'Dickies Mens Relaxed Fit Carpenter Jean',
slug: toSlug('Dickies Mens Relaxed Fit Carpenter Jean'),
category: 'Jeans',
brand: 'Dickies',
images: ['/images/p25-1.jpg', '/images/p25-2.jpg'],
tags: ['new-arrival', 'featured'],
isPublished: true,
price: 95.34,
listPrice: 0,
avgRating: 3.66,
numReviews: 15,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 25,
numSales: 48,
description:
'Relaxed work jean with traditional carpenter-style pockets and logo patch at back pockets',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Blue', 'Grey'],
reviews: [],
},
{
name: 'Wrangler mens Premium Performance Cowboy Cut Slim Fit Jean',
slug: toSlug(
'Wrangler mens Premium Performance Cowboy Cut Slim Fit Jean'
),
category: 'Jeans',
brand: 'Wrangler',
images: ['/images/p26-1.jpg', '/images/p26-2.jpg'],
tags: ['best-seller', 'todays-deal'],
isPublished: true,
price: 81.78,
listPrice: 149.99,
avgRating: 3.46,
numReviews: 13,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 3 },
],
countInStock: 26,
numSales: 48,
description:
'Designed with a functional fit in mind, these jeans are made to stack over your favorite pair of boots. Constructed with a slim fit in the waist, seat, and thigh, this jean is made for both function and comfort for long days in the saddle.',
sizes: ['30Wx30L', '34Wx30L', '36Wx30L'],
colors: ['Blue', 'Grey'],
reviews: [],
},
// Watches
{
name: "Seiko Men's Analogue Watch with Black Dial",
slug: toSlug("Seiko Men's Analogue Watch with Black Dial"),
category: 'Wrist Watches',
brand: 'Seiko',
images: ['/images/p31-1.jpg', '/images/p31-2.jpg'],
tags: ['new-arrival'],
isPublished: true,
price: 530.0,
listPrice: 0,
avgRating: 4.71,
numReviews: 7,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 2 },
{ rating: 5, count: 5 },
],
countInStock: 31,
numSales: 48,
description:
'Casing: Case made of stainless steel Case shape: round Case colour: silver Glass: Hardlex Clasp type: Fold over clasp with safety',
sizes: [],
colors: [],
reviews: [],
},
{
name: 'SEIKO 5 Sport SRPJ83 Beige Dial Nylon Automatic Watch, Beige, Automatic Watch',
slug: toSlug(
'SEIKO 5 Sport SRPJ83 Beige Dial Nylon Automatic Watch, Beige, Automatic Watch'
),
category: 'Wrist Watches',
brand: 'Seiko',
images: ['/images/p32-1.jpg', '/images/p32-2.jpg'],
tags: ['featured'],
isPublished: true,
price: 375.83,
listPrice: 400,
avgRating: 4.2,
numReviews: 10,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 32,
numSales: 48,
description:
'Seiko 5 Sports Collection Inspired by vintage field/aviator style: Automatic with manual winding capability',
sizes: [],
colors: [],
reviews: [],
},
{
name: "Casio Men's Heavy Duty Analog Quartz Stainless Steel Strap, Silver, 42 Casual Watch ",
slug: toSlug(
"Casio Men's Heavy Duty Analog Quartz Stainless Steel Strap, Silver, 42 Casual Watch"
),
category: 'Wrist Watches',
brand: 'Casio',
images: ['/images/p33-1.jpg', '/images/p33-2.jpg'],
tags: ['best-seller'],
isPublished: true,
price: 60.78,
listPrice: 0,
avgRating: 4,
numReviews: 12,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 2 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 33,
numSales: 48,
description:
'The Casio range is growing with this model MWA-100H-1AVEF. Sporting a stainless steel case with a brushed finish, it will easily withstand all the shocks of everyday life.',
sizes: [],
colors: [],
reviews: [],
},
{
name: 'Casio Classic Silver-Tone Stainless Steel Band Date Indicator Watch',
slug: toSlug(
'Casio Classic Silver-Tone Stainless Steel Band Date Indicator Watch'
),
category: 'Wrist Watches',
brand: 'Casio',
images: ['/images/p34-1.jpg', '/images/p34-2.jpg'],
tags: ['todays-deal'],
isPublished: true,
price: 34.22,
listPrice: 54.99,
avgRating: 3.85,
numReviews: 14,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 34,
numSales: 48,
description:
'The new MTPVD01D-7EV is a classic 50 meter water resistant stainless steel watch now updated with a white dial. This elegant 3 hand, date display timepiece is perfect for any setting.',
sizes: [],
colors: [],
reviews: [],
},
{
name: "Fossil Men's Grant Stainless Steel Quartz Chronograph Watch",
slug: toSlug(
"Fossil Men's Grant Stainless Steel Quartz Chronograph Watch"
),
category: 'Wrist Watches',
brand: 'Fossil',
images: ['/images/p35-1.jpg', '/images/p35-2.jpg'],
tags: ['new-arrival', 'featured'],
isPublished: true,
price: 171.22,
listPrice: 225,
avgRating: 3.66,
numReviews: 15,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 35,
numSales: 48,
description:
'Chronograph watch featuring silver- and blue-tone case, blue sunray dial, and silver-tone Roman numeral indices',
sizes: [],
colors: ['Blue', 'Black', 'Sliver'],
reviews: [],
},
{
name: "Fossil Men's Machine Stainless Steel Quartz Watch",
slug: toSlug("Fossil Men's Machine Stainless Steel Quartz Watch"),
category: 'Wrist Watches',
brand: 'Fossil',
images: ['/images/p36-1.jpg', '/images/p36-2.jpg'],
tags: ['best-seller', 'todays-deal'],
isPublished: true,
price: 158.21,
listPrice: 229.0,
avgRating: 3.46,
numReviews: 13,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 3 },
],
countInStock: 36,
numSales: 49,
description:
'In masculine black-on-black, our industrial-inspired Machine watch will add a fresh, modern touch to your casual look. This Machine watch also features a three hand movement on a stainless steel bracelet.',
sizes: [],
colors: ['Brown', 'Sliver', 'Black'],
reviews: [],
},
// Sneakers
{
name: 'adidas Mens Grand Court 2.0 Training Shoes Training Shoes',
slug: toSlug(
'adidas Mens Grand Court 2.0 Training Shoes Training Shoes'
),
category: 'Shoes',
brand: 'adidas',
images: ['/images/p41-1.jpg', '/images/p41-2.jpg'],
tags: ['new-arrival'],
isPublished: true,
price: 81.99,
listPrice: 0,
avgRating: 4.71,
numReviews: 7,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 2 },
{ rating: 5, count: 5 },
],
countInStock: 41,
numSales: 48,
description:
'Cloudfoam Comfort sockliner is ultra-soft and plush, with two layers of cushioning topped with soft, breathable mesh',
sizes: ['8', '9', '10'],
colors: ['White', 'Black', 'Grey'],
reviews: [],
},
{
name: "ziitop Men's Running Walking Shoes Fashion Sneakers Mesh Dress Shoes Business Oxfords Shoes Lightweight Casual Breathable Work Formal Shoes",
slug: toSlug(
"ziitop Men's Running Walking Shoes Fashion Sneakers Mesh Dress Shoes Business Oxfords Shoes Lightweight Casual Breathable Work Formal Shoes"
),
category: 'Shoes',
brand: 'ziitop',
images: ['/images/p42-1.jpg', '/images/p42-2.jpg'],
tags: ['featured'],
isPublished: true,
price: 39.97,
listPrice: 49.96,
avgRating: 4.2,
numReviews: 10,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 0 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 42,
numSales: 50,
description:
'Cloudfoam Comfort sockliner is ultra-soft and plush, with two layers of cushioning topped with soft, breathable mesh',
sizes: ['8', '9', '10'],
colors: ['Beige', 'Black', 'Grey'],
reviews: [],
},
{
name: 'Skechers mens Summits High Range Hands Free Slip-in Shoes Work shoe',
slug: toSlug(
'Skechers mens Summits High Range Hands Free Slip-in Shoes Work shoe'
),
category: 'Shoes',
brand: 'Skechers',
images: ['/images/p43-1.jpg', '/images/p43-2.jpg'],
tags: ['best-seller'],
isPublished: true,
price: 99.99,
listPrice: 0,
avgRating: 4,
numReviews: 12,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 0 },
{ rating: 3, count: 2 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 43,
numSales: 72,
description:
'Step into easy-wearing comfort with Skechers Hands Free Slip-ins™: Summits - High Range. Along with our Exclusive Heel Pillow™ holds your foot securely in place, this vegan style features a unique pop-up Skechers Slip-ins™ molded heel panel, a mesh upper with fixed laces',
sizes: ['8', '9', '10'],
colors: ['Navy', 'Black', 'Grey'],
reviews: [],
},
{
name: 'DLWKIPV Mens Running Shoes Tennis Cross Training Sneakers Fashion Non Slip Outdoor Walking Jogging Shoes Mesh Light Flexible Comfortable Breathable Shoes',
slug: toSlug(
'DLWKIPV Mens Running Shoes Tennis Cross Training Sneakers Fashion Non Slip Outdoor Walking Jogging Shoes Mesh Light Flexible Comfortable Breathable Shoes'
),
category: 'Shoes',
brand: 'DLWKIPV',
images: ['/images/p44-1.jpg', '/images/p44-2.jpg'],
tags: ['todays-deal'],
isPublished: true,
price: 36.99,
listPrice: 56.9,
avgRating: 3.85,
numReviews: 14,
ratingDistribution: [
{ rating: 1, count: 0 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 44,
numSales: 72,
description:
'Design: Mesh vamp, ventilation. Sole anti-slip groove design, shock absorption and anti-slip. The inside of the shoe is wide and soft, bringing you a good comfortable experience',
sizes: ['8', '9', '10', '11', '12'],
colors: ['Brown', 'Black', 'Grey'],
reviews: [],
},
{
name: "ASICS Men's GT-2000 13 Running Shoes",
slug: toSlug("ASICS Men's GT-2000 13 Running Shoes"),
category: 'Shoes',
brand: 'ASICS',
images: ['/images/p45-1.jpg', '/images/p45-2.jpg'],
tags: ['new-arrival', 'featured'],
isPublished: true,
price: 179.95,
listPrice: 200,
avgRating: 3.66,
numReviews: 15,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 5 },
],
countInStock: 45,
numSales: 64,
description:
"At least 50% of the shoe's main upper material is made with recycled content to reduce waste and carbon emissions",
sizes: ['8', '9', '10', '11'],
colors: ['Blue', 'Black', 'Grey'],
reviews: [],
},
{
name: "Mens Wearbreeze Shoes, Urban - Ultra Comfortable Shoes, Breeze Shoes for Men, Men's Mesh Dress Sneakers Business Shoes",
slug: toSlug(
"Mens Wearbreeze Shoes, Urban - Ultra Comfortable Shoes, Breeze Shoes for Men, Men's Mesh Dress Sneakers Business Shoes"
),
category: 'Shoes',
brand: 'Generic',
images: ['/images/p46-1.jpg', '/images/p46-2.jpg'],
tags: ['best-seller', 'todays-deal'],
isPublished: true,
price: 32.99,
listPrice: 80,
avgRating: 3.46,
numReviews: 13,
ratingDistribution: [
{ rating: 1, count: 1 },
{ rating: 2, count: 2 },
{ rating: 3, count: 3 },
{ rating: 4, count: 4 },
{ rating: 5, count: 3 },
],
countInStock: 46,
numSales: 48,
description:
'Cloudfoam Comfort sockliner is ultra-soft and plush, with two layers of cushioning topped with soft, breathable mesh',
sizes: ['8', '9', '10', '11'],
colors: ['Green', 'Black', 'Grey'],
reviews: [],
},
]
@basir
Copy link
Author

basir commented Jan 10, 2025

p11-1
p11-2
p12-1
p12-2
p12-3
p12-4
p13-1
p13-2
p14-1
p14-2
p15-1
p15-2
p16-1
p16-2
p21-1
p21-2
p22-1
p22-2
p23-1
p23-2
p24-1
p24-2
p25-1
p25-2
p26-1
p26-2
p31-1
p31-2
p32-1
p32-2
p33-1
p33-2
p34-1
p34-2
p35-1
p35-2
p36-1
p36-2
p41-1
p41-2
p42-1
p42-2
p43-1
p43-2
p44-1
p44-2
p45-1
p45-2
p46-1
p46-2

@basir
Copy link
Author

basir commented Jan 10, 2025

Category Images:
jeans
shoes
t-shirts
wrist-watches

@basir
Copy link
Author

basir commented Jan 10, 2025

Banner Images:
banner1
banner2
banner3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment