-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore-items.ts
More file actions
102 lines (100 loc) · 4.55 KB
/
Copy pathstore-items.ts
File metadata and controls
102 lines (100 loc) · 4.55 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { Product } from "./types";
const initialProducts: Product[] = [
{
brand: "asics",
description:
"The NOVABLAST 5 provides a soft landing and a bouncy sensation for a comfortable run. The functionality and structure of the NOVABLAST 5 midsole and outer sole create a bouncy, energizing run.",
gender: "men",
id: 1,
image: "/asics-novablast-5-men.jpg",
price: 149.99,
rating: { rate: 3.9, count: 120 },
sizes: ["S", "M", "LG", "XL"],
title: "ASICS Men's Nova Blast 5 Wide Running Shoes, Navy",
},
{
brand: "asics",
description:
"The defining feature of the GEL-NIMBUS series is its supreme cushioning, designed to make you feel like you are landing on clouds. This makes it an ideal choice for runners who prioritize comfort and impact protection, particularly for easy miles, recovery runs, and long distances.",
gender: "men",
id: 2,
image: "/asics-nimbus-men.jpg",
price: 129.99,
rating: { rate: 4.1, count: 259 },
sizes: ["S", "M", "LG", "XL"],
title: "Men's GEL-NIMBUS 27 Running Shoes",
},
{
brand: "asics",
description:
"The FF BLAST MAX midsole provides a soft landing and responsiveness, supporting a comfortable run. The upper features engineered mesh for improved elasticity and breathability. The tongue wing structure reduces tongue movement for a better fit.",
gender: "women",
id: 3,
image: "/asics-novablast-5-women.jpg",
price: 139.99,
rating: { rate: 4.7, count: 500 },
sizes: ["S", "M", "LG", "XL"],
title: "ASICS (Women's) Nova Blast 5 Running Shoes",
},
{
brand: "asics",
description:
"A racing shoe for elite athletes, designed for pitch-style runners aiming to break their personal bests. These shoes allow runners to increase their pace to increase speed and conserve energy with each stride. The newly designed FF LEAP foam technology offers the lightest and most bouncy of ASICS' foams. It's placed in the upper layer of the midsole, providing cushioning and excellent energy return",
gender: "all",
id: 4,
image: "/asics-meta-speed-men.jpg",
price: 199.99,
rating: { rate: 4.7, count: 500 },
sizes: ["S", "M", "LG", "XL"],
title: "ASICS (Men's and Women's) Metaspeed Edge Tokyo",
},
{
brand: "nike",
description:
"Lead your next run with the comfort of the Nike Revolution 8. Comfort is essential for running success. That's why we've pursued a soft feel that gives you cushioning and flexibility with every step. This popular model has been updated with a breathable design.",
gender: "men",
id: 5,
image: "/nike-revolution-8-men.jpg",
price: 89.99,
rating: { rate: 4.7, count: 500 },
sizes: ["S", "M", "LG", "XL"],
title: "Nike (NIKE) (Men's) Revolution 8 Running",
},
{
brand: "nike",
description:
"High-rebound, lightweight foam delivers a new level of cushioning. The Vomero Plus takes premium cushioning to the next level. The high-rebound design features full-length ZoomX foam, boasting industry-leading rebound, for exceptional comfort on your daily runs. Plus, the engineered mesh upper features soft, breathable yarns for a comfortable fit.",
gender: "men",
id: 6,
price: 179.99,
rating: { rate: 4.7, count: 500 },
image: "/nike-vomero-plus-men.jpg",
sizes: ["S", "M", "LG", "XL"],
title: "Nike (Men's) Zoom Vomero Plus Running Shoes",
},
{
brand: "nike",
description:
"The Pegasus offers high-rebound cushioning for an energetic ride on your daily road runs. Dual Air Zoom units and a ReactX foam midsole make it lighter than ever before and provide excellent energy return. The engineered mesh upper has also been improved for lighter weight and improved breathability.",
gender: "men",
id: 7,
image: "/nike-air-zoom-pegasus-41-men.jpg",
price: 159.99,
rating: { rate: 4.7, count: 500 },
sizes: ["S", "M", "LG", "XL"],
title: "Nike (Men's) Zoom Vomero Plus Running Shoes",
},
{
brand: "nike",
description:
"The Pegasus's high-rebound cushioning delivers an energetic ride for everyday road running. Dual Air Zoom units and a ReactX foam midsole make it lighter than ever before and provide excellent energy return. The improved engineered mesh upper also reduces weight and improves breathability.",
gender: "women",
id: 8,
image: "/nike-air-zoom-pegasus-41-se-women.jpg",
price: 139.99,
rating: { rate: 4.7, count: 500 },
sizes: ["S", "M", "LG", "XL"],
title: "Nike (Women's) Air Zoom Pegasus 41 SE",
},
];
export default initialProducts;