-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigationData.js
124 lines (123 loc) · 4.2 KB
/
navigationData.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
export const navigation = {
categories: [
{
id: 'women',
name: 'Women',
featured: [
{
name: 'New Arrivals',
href: '/',
imageSrc: 'https://tailwindui.com/img/ecommerce-images/mega-menu-category-01.jpg',
imageAlt: 'Models sitting back to back, wearing Basic Tee in black and bone.',
},
{
name: 'Basic Tees',
href: '/',
imageSrc: 'https://tailwindui.com/img/ecommerce-images/mega-menu-category-02.jpg',
imageAlt: 'Close up of Basic Tee fall bundle with off-white, ochre, olive, and black tees.',
},
],
sections: [
{
id: 'clothing',
name: 'Clothing',
items: [
{ name: 'Tops', id:"top", href: `{women/clothing/tops}` },
{ name: 'Dresses', id:"women_dress", href: '#' },
{ name: 'Women Jeans', id: 'women_jeans' },
{ name: 'Lengha Choli', id: 'lengha_choli' },
{ name: 'Sweaters', id: 'sweater' },
{ name: 'T-Shirts', id: 't-shirt' },
{ name: 'Jackets', id: 'jacket' },
{ name: 'Gouns', id: 'gouns' },
{ name: 'Sarees', id: 'saree' },
{ name: 'Kurtas', id: 'kurtas' },
],
},
{
id: 'accessories',
name: 'Accessories',
items: [
{ name: 'Watches', id: 'watch' },
{ name: 'Wallets', id: 'wallet' },
{ name: 'Bags', id: 'bag' },
{ name: 'Sunglasses', id: 'sunglasse' },
{ name: 'Hats', id: 'hat' },
{ name: 'Belts', id: 'belt' },
],
},
{
id: 'brands',
name: 'Brands',
items: [
{ name: 'Full Nelson', id: '#' },
{ name: 'My Way', id: '#' },
{ name: 'Re-Arranged', id: '#' },
{ name: 'Counterfeit', id: '#' },
{ name: 'Significant Other', id: '#' },
],
},
],
},
{
id: 'men',
name: 'Men',
featured: [
{
name: 'New Arrivals',
id: '#',
imageSrc: 'https://tailwindui.com/img/ecommerce-images/product-page-04-detail-product-shot-01.jpg',
imageAlt: 'Drawstring top with elastic loop closure and textured interior padding.',
},
{
name: 'Artwork Tees',
id: '#',
imageSrc: 'https://tailwindui.com/img/ecommerce-images/category-page-02-image-card-06.jpg',
imageAlt:
'Three shirts in gray, white, and blue arranged on table with same line drawing of hands and shapes overlapping on front of shirt.',
},
],
sections: [
{
id: 'clothing',
name: 'Clothing',
items: [
{ name: 'Mens Kurtas', id: 'mens_kurta' },
{ name: 'Shirt', id: 'shirt' },
{ name: 'Men Jeans', id: 'men_jeans' },
{ name: 'Sweaters', id: '#' },
{ name: 'T-Shirts', id: 't-shirt' },
{ name: 'Jackets', id: '#' },
{ name: 'Activewear', id: '#' },
],
},
{
id: 'accessories',
name: 'Accessories',
items: [
{ name: 'Watches', id: '#' },
{ name: 'Wallets', id: '#' },
{ name: 'Bags', id: '#' },
{ name: 'Sunglasses', id: '#' },
{ name: 'Hats', id: '#' },
{ name: 'Belts', id: '#' },
],
},
{
id: 'brands',
name: 'Brands',
items: [
{ name: 'Re-Arranged', id: '#' },
{ name: 'Counterfeit', id: '#' },
{ name: 'Full Nelson', id: '#' },
{ name: 'My Way', id: '#' },
],
},
],
},
],
pages: [
{ name: 'Company', id: '/' },
{ name: 'Stores', id: '/' },
],
}