@sonic-equipment/ui 187.0.0 → 189.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cards/data-card/data-card.js +1 -1
- package/dist/country-selector/connected-country-selector.js +0 -11
- package/dist/country-selector/use-countries-languages.js +0 -11
- package/dist/delivery-time/delivery-time.js +3 -4
- package/dist/exports.d.ts +13 -3
- package/dist/footer/connected-footer.js +8 -1
- package/dist/footer/footer.d.ts +5 -10
- package/dist/footer/footer.js +23 -18
- package/dist/forms/fields/select-field/select-field.js +1 -1
- package/dist/forms/layout/form/form.js +1 -1
- package/dist/header/connected-header.js +9 -1
- package/dist/header/drawers/desktop-navigation-drawer.d.ts +3 -3
- package/dist/header/drawers/desktop-navigation-drawer.js +2 -4
- package/dist/header/drawers/mobile-navigation-drawer.d.ts +3 -3
- package/dist/header/drawers/mobile-navigation-drawer.js +2 -2
- package/dist/header/header.d.ts +3 -3
- package/dist/header/header.js +15 -9
- package/dist/header/link-list/navigation-link-list.d.ts +5 -5
- package/dist/header/link-list/navigation-link-list.js +20 -5
- package/dist/index.js +14 -4
- package/dist/intl/formatted-date.d.ts +4 -0
- package/dist/intl/formatted-date.js +8 -0
- package/dist/intl/translation-id.d.ts +1 -1
- package/dist/intl/use-formatted-date.d.ts +6 -0
- package/dist/intl/use-formatted-date.js +19 -0
- package/dist/lists/menu-list/menu-list-header.d.ts +1 -1
- package/dist/lists/menu-list/menu-list-item.d.ts +2 -2
- package/dist/lists/menu-list/menu-list-item.js +3 -1
- package/dist/lists/menu-list/menu-list-provider.d.ts +11 -0
- package/dist/lists/menu-list/menu-list-provider.js +30 -0
- package/dist/lists/menu-list/menu-list.d.ts +8 -5
- package/dist/lists/menu-list/menu-list.js +6 -5
- package/dist/lists/menu-list/menu-list.module.css.js +1 -1
- package/dist/lists/menu-list/use-menu-list-item.d.ts +5 -0
- package/dist/lists/menu-list/use-menu-list-item.js +12 -0
- package/dist/lists/menu-list/use-menu-list.d.ts +1 -0
- package/dist/lists/menu-list/use-menu-list.js +11 -0
- package/dist/loading/dynamic-loading-overlay.d.ts +5 -0
- package/dist/loading/dynamic-loading-overlay.js +26 -0
- package/dist/loading/dynamic-loading-overlay.module.css.js +3 -0
- package/dist/media/image-lightbox/image-lightbox.js +12 -2
- package/dist/media/zoom-image/zoom-image.js +6 -1
- package/dist/navigation/mobile-navigation/mobile-navigation.d.ts +3 -3
- package/dist/navigation/mobile-navigation/mobile-navigation.js +2 -2
- package/dist/navigation/panel-navigation/panel-navigation.d.ts +5 -7
- package/dist/navigation/panel-navigation/panel-navigation.js +11 -14
- package/dist/pages/checkout/cart-page/cart-page.js +1 -1
- package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +2 -4
- package/dist/pages/error-page/error-page.js +2 -7
- package/dist/pages/my-sonic/actions/change-password/connected-change-password-dialog.js +0 -2
- package/dist/pages/my-sonic/navigation/my-sonic-desktop-navigation.js +1 -1
- package/dist/pages/my-sonic/pages/order-history/order-history.d.ts +1 -0
- package/dist/pages/my-sonic/pages/order-history/order-history.js +166 -0
- package/dist/pages/my-sonic/pages/order-history/order-history.module.css.js +3 -0
- package/dist/pages/product/product-listing-page/product-listing.js +1 -1
- package/dist/pages/product/search-result-page/search-results-page.js +1 -1
- package/dist/shared/api/bff/hooks/use-fetch-navigation-links.d.ts +1 -1
- package/dist/shared/api/bff/model/bff.model.d.ts +22 -14
- package/dist/shared/api/bff/model/bff.model.js +11 -0
- package/dist/shared/api/bff/services/bff-service.d.ts +2 -2
- package/dist/shared/api/bff/services/bff-service.js +1 -1
- package/dist/shared/api/storefront/hooks/orders/use-fetch-orders.d.ts +10 -0
- package/dist/shared/api/storefront/hooks/orders/use-fetch-orders.js +13 -0
- package/dist/shared/api/storefront/model/storefront.model.d.ts +13 -1
- package/dist/shared/api/storefront/model/storefront.model.js +28 -1
- package/dist/shared/api/storefront/services/order-service.d.ts +12 -0
- package/dist/shared/api/storefront/services/order-service.js +29 -0
- package/dist/shared/data/navigation.d.ts +2 -0
- package/dist/shared/data/navigation.js +2605 -0
- package/dist/shared/hooks/use-intersection-observer.d.ts +3 -1
- package/dist/shared/hooks/use-intersection-observer.js +3 -2
- package/dist/shared/utils/date.d.ts +4 -1
- package/dist/shared/utils/date.js +6 -5
- package/dist/shared/utils/price.d.ts +1 -1
- package/dist/shared/{hooks/use-scroll-to.d.ts → utils/scrolling.d.ts} +1 -1
- package/dist/shared/utils/scrolling.js +16 -0
- package/dist/shared/utils/uuid.d.ts +2 -1
- package/dist/styles.css +896 -634
- package/dist/table/data-table.d.ts +37 -10
- package/dist/table/data-table.js +72 -17
- package/dist/table/data-table.module.css.js +1 -1
- package/dist/table/elements/switch-sort-direction.d.ts +2 -0
- package/dist/table/elements/switch-sort-direction.js +11 -0
- package/dist/table/elements/table-context.d.ts +6 -5
- package/dist/table/elements/table-context.js +1 -16
- package/dist/table/elements/table-provider.d.ts +6 -5
- package/dist/table/elements/table-provider.js +23 -17
- package/dist/table/elements/table-row-context.d.ts +2 -2
- package/dist/table/elements/table-row-provider.js +4 -4
- package/dist/table/elements/table-sort-button.d.ts +8 -7
- package/dist/table/elements/table-sort-button.js +5 -4
- package/dist/table/elements/table.d.ts +1 -1
- package/dist/table/elements/table.js +2 -2
- package/dist/table/elements/table.module.css.js +1 -1
- package/dist/table/elements/td.d.ts +1 -1
- package/dist/table/elements/th.d.ts +1 -7
- package/dist/table/elements/th.js +2 -3
- package/dist/table/elements/tr.d.ts +2 -8
- package/dist/table/elements/tr.js +1 -3
- package/dist/table/elements/types.d.ts +36 -0
- package/dist/table/elements/use-table.js +1 -3
- package/dist/table/elements/use-td.d.ts +1 -1
- package/dist/table/elements/use-th.d.ts +2 -2
- package/package.json +1 -1
- package/dist/shared/hooks/use-scroll-to.js +0 -19
- package/dist/table/elements/table-column-properties.d.ts +0 -10
- package/dist/table/elements/use-tr.d.ts +0 -2
- package/dist/table/elements/use-tr.js +0 -16
|
@@ -0,0 +1,2605 @@
|
|
|
1
|
+
const navigationData = {
|
|
2
|
+
items: [
|
|
3
|
+
{
|
|
4
|
+
items: [
|
|
5
|
+
{
|
|
6
|
+
href: 'https://sonic-equipment.com',
|
|
7
|
+
key: 'home',
|
|
8
|
+
label: 'Home',
|
|
9
|
+
type: 'link',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
items: [
|
|
13
|
+
{
|
|
14
|
+
href: null,
|
|
15
|
+
image: null,
|
|
16
|
+
items: [
|
|
17
|
+
{
|
|
18
|
+
header: 'Discover more',
|
|
19
|
+
href: 'https://sonic-equipment.com/discover/tools',
|
|
20
|
+
image: {
|
|
21
|
+
'1': 'https://images.sonic-equipment.com/categories/Tools_.webp',
|
|
22
|
+
'2': 'https://images.sonic-equipment.com/categories/Tools_.webp',
|
|
23
|
+
'3': 'https://images.sonic-equipment.com/categories/Tools_.webp',
|
|
24
|
+
altText: 'Tools',
|
|
25
|
+
},
|
|
26
|
+
items: [
|
|
27
|
+
{
|
|
28
|
+
href: '/Catalog/tools',
|
|
29
|
+
key: '54030856-52b1-4d9d-8b95-b2f400d73321',
|
|
30
|
+
label: 'Tools',
|
|
31
|
+
type: 'link',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
href: '/Catalog/tools/hand-tools',
|
|
35
|
+
image: null,
|
|
36
|
+
items: [
|
|
37
|
+
{
|
|
38
|
+
href: '/Catalog/tools/hand-tools/wrenches',
|
|
39
|
+
image: null,
|
|
40
|
+
items: [
|
|
41
|
+
{
|
|
42
|
+
href: '/Catalog/tools/hand-tools/wrenches/flare-nut',
|
|
43
|
+
image: null,
|
|
44
|
+
key: '09c9e4f4-2c76-4bcb-94fb-b2f400d7334e',
|
|
45
|
+
label: 'Flare nut',
|
|
46
|
+
openInNewTab: false,
|
|
47
|
+
type: 'link',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
href: '/Catalog/tools/hand-tools/wrenches/double-open',
|
|
51
|
+
image: null,
|
|
52
|
+
key: '008c735d-78f6-499a-8b67-b2f400d7335f',
|
|
53
|
+
label: 'Double open',
|
|
54
|
+
openInNewTab: false,
|
|
55
|
+
type: 'link',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
href: '/Catalog/tools/hand-tools/wrenches/combination',
|
|
59
|
+
image: null,
|
|
60
|
+
key: 'a634e281-eb60-4a4b-bfb5-b2f400d7336f',
|
|
61
|
+
label: 'Combination',
|
|
62
|
+
openInNewTab: false,
|
|
63
|
+
type: 'link',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
href: '/Catalog/tools/hand-tools/wrenches/ratcheting',
|
|
67
|
+
image: null,
|
|
68
|
+
key: '4a805c58-e4b3-485a-8250-b2f400d733ce',
|
|
69
|
+
label: 'Ratcheting',
|
|
70
|
+
openInNewTab: false,
|
|
71
|
+
type: 'link',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
href: '/Catalog/tools/hand-tools/wrenches/ring',
|
|
75
|
+
image: null,
|
|
76
|
+
key: 'd0cef6ea-dd65-4c83-8faf-b2f400d733d6',
|
|
77
|
+
label: 'Ring',
|
|
78
|
+
openInNewTab: false,
|
|
79
|
+
type: 'link',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
href: '/Catalog/tools/hand-tools/wrenches/adjustable',
|
|
83
|
+
image: null,
|
|
84
|
+
key: '41dbc5b6-318c-4627-ae90-b2f400d733de',
|
|
85
|
+
label: 'Adjustable',
|
|
86
|
+
openInNewTab: false,
|
|
87
|
+
type: 'link',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
href: '/Catalog/tools/hand-tools/wrenches/hinged-socket',
|
|
91
|
+
image: null,
|
|
92
|
+
key: 'd64e1571-97f1-47be-b369-b2f400d733e7',
|
|
93
|
+
label: 'Hinged socket',
|
|
94
|
+
openInNewTab: false,
|
|
95
|
+
type: 'link',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
href: '/Catalog/tools/hand-tools/wrenches/tx',
|
|
99
|
+
image: null,
|
|
100
|
+
key: '397ade0e-bdad-4871-bed2-b2f400d733ef',
|
|
101
|
+
label: 'TX',
|
|
102
|
+
openInNewTab: false,
|
|
103
|
+
type: 'link',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
href: '/Catalog/tools/hand-tools/wrenches/half-moon',
|
|
107
|
+
image: null,
|
|
108
|
+
key: '2aa7cc05-4407-4696-ae40-b2f400d733f7',
|
|
109
|
+
label: 'Half moon',
|
|
110
|
+
openInNewTab: false,
|
|
111
|
+
type: 'link',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
href: '/Catalog/tools/hand-tools/wrenches/angle',
|
|
115
|
+
image: null,
|
|
116
|
+
key: 'd71c4c77-775d-4eb9-94d0-b2f400d733ff',
|
|
117
|
+
label: 'Angle',
|
|
118
|
+
openInNewTab: false,
|
|
119
|
+
type: 'link',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
href: '/Catalog/tools/hand-tools/wrenches/wrench-sets',
|
|
123
|
+
image: null,
|
|
124
|
+
key: '2475976b-15da-4c4f-81c4-b2f400d73684',
|
|
125
|
+
label: 'Wrench sets',
|
|
126
|
+
openInNewTab: false,
|
|
127
|
+
type: 'link',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
href: '/Catalog/tools/hand-tools/wrenches/inches-sae',
|
|
131
|
+
image: null,
|
|
132
|
+
key: 'b541065a-c284-4311-81bf-b2f400d73742',
|
|
133
|
+
label: 'Inches (SAE)',
|
|
134
|
+
openInNewTab: false,
|
|
135
|
+
type: 'link',
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
key: 'ec8f5f0c-5484-4d79-a084-b2f400d73345',
|
|
139
|
+
label: 'Wrenches',
|
|
140
|
+
openInNewTab: false,
|
|
141
|
+
type: 'link-group',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys',
|
|
145
|
+
image: null,
|
|
146
|
+
items: [
|
|
147
|
+
{
|
|
148
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys/hex',
|
|
149
|
+
image: null,
|
|
150
|
+
key: 'c95f02c1-e63c-45a4-9194-b2f400d73381',
|
|
151
|
+
label: 'Hex',
|
|
152
|
+
openInNewTab: false,
|
|
153
|
+
type: 'link',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys/tx',
|
|
157
|
+
image: null,
|
|
158
|
+
key: 'd6e6725d-6f6c-4dd4-affd-b2f400d733b5',
|
|
159
|
+
label: 'TX',
|
|
160
|
+
openInNewTab: false,
|
|
161
|
+
type: 'link',
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys/hex-key-sets',
|
|
165
|
+
image: null,
|
|
166
|
+
key: 'bea59c9b-0a51-48fd-8f04-b2f400d733bd',
|
|
167
|
+
label: 'Hex key sets',
|
|
168
|
+
openInNewTab: false,
|
|
169
|
+
type: 'link',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys/tx-key-sets',
|
|
173
|
+
image: null,
|
|
174
|
+
key: 'f2169810-c009-4413-af45-b2f400d733c6',
|
|
175
|
+
label: 'TX key sets',
|
|
176
|
+
openInNewTab: false,
|
|
177
|
+
type: 'link',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
href: '/Catalog/tools/hand-tools/hex-and-tx-keys/inches-sae',
|
|
181
|
+
image: null,
|
|
182
|
+
key: 'cbda0d1c-4e9a-4b3a-92a6-b2f400d73781',
|
|
183
|
+
label: 'Inches (SAE)',
|
|
184
|
+
openInNewTab: false,
|
|
185
|
+
type: 'link',
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
key: 'bc67b1aa-6a3d-435b-bff4-b2f400d73379',
|
|
189
|
+
label: 'Hex and TX keys',
|
|
190
|
+
openInNewTab: false,
|
|
191
|
+
type: 'link-group',
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
href: '/Catalog/tools/hand-tools/torque-wrenches',
|
|
195
|
+
image: null,
|
|
196
|
+
items: [
|
|
197
|
+
{
|
|
198
|
+
href: '/Catalog/tools/hand-tools/torque-wrenches/repair-kits',
|
|
199
|
+
image: null,
|
|
200
|
+
key: '326eef69-8f5c-41ee-bf81-b2f400d7340f',
|
|
201
|
+
label: 'Repair kits',
|
|
202
|
+
openInNewTab: false,
|
|
203
|
+
type: 'link',
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
href: '/Catalog/tools/hand-tools/torque-wrenches/torque-wrenches',
|
|
207
|
+
image: null,
|
|
208
|
+
key: '53994b27-03fb-4b8e-b277-b2f400d73809',
|
|
209
|
+
label: 'Torque wrenches',
|
|
210
|
+
openInNewTab: false,
|
|
211
|
+
type: 'link',
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
href: '/Catalog/tools/hand-tools/torque-wrenches/torque-wrench-sets',
|
|
215
|
+
image: null,
|
|
216
|
+
key: '2d010551-8960-42ec-a7c5-b2f400d7380e',
|
|
217
|
+
label: 'Torque wrench sets',
|
|
218
|
+
openInNewTab: false,
|
|
219
|
+
type: 'link',
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
href: '/Catalog/tools/hand-tools/torque-wrenches/torque-multipliers',
|
|
223
|
+
image: null,
|
|
224
|
+
key: 'd662bcfb-56a8-4d2b-8a11-b2f400d74aa1',
|
|
225
|
+
label: 'Torque multipliers',
|
|
226
|
+
openInNewTab: false,
|
|
227
|
+
type: 'link',
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
key: 'f89dd6fd-7614-4b37-acb2-b2f400d73407',
|
|
231
|
+
label: 'Torque wrenches',
|
|
232
|
+
openInNewTab: false,
|
|
233
|
+
type: 'link-group',
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
href: '/Catalog/tools/hand-tools/screwdrivers',
|
|
237
|
+
image: null,
|
|
238
|
+
items: [
|
|
239
|
+
{
|
|
240
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/ph',
|
|
241
|
+
image: null,
|
|
242
|
+
key: 'f179c70e-d67f-47ee-88dc-b2f400d7341d',
|
|
243
|
+
label: 'PH',
|
|
244
|
+
openInNewTab: false,
|
|
245
|
+
type: 'link',
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/pz',
|
|
249
|
+
image: null,
|
|
250
|
+
key: '8ed35227-063d-4e99-ac51-b2f400d73425',
|
|
251
|
+
label: 'PZ',
|
|
252
|
+
openInNewTab: false,
|
|
253
|
+
type: 'link',
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/slotted',
|
|
257
|
+
image: null,
|
|
258
|
+
key: '5b100a9f-dbb1-4fcb-b83b-b2f400d7342d',
|
|
259
|
+
label: 'Slotted',
|
|
260
|
+
openInNewTab: false,
|
|
261
|
+
type: 'link',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/tx',
|
|
265
|
+
image: null,
|
|
266
|
+
key: 'a4453cda-38b0-4a5f-a553-b2f400d73435',
|
|
267
|
+
label: 'TX',
|
|
268
|
+
openInNewTab: false,
|
|
269
|
+
type: 'link',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/vde',
|
|
273
|
+
image: null,
|
|
274
|
+
key: '22f3b771-2194-4011-887a-b2f400d7343d',
|
|
275
|
+
label: 'VDE',
|
|
276
|
+
openInNewTab: false,
|
|
277
|
+
type: 'link',
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/hex-nut-drivers',
|
|
281
|
+
image: null,
|
|
282
|
+
key: '987b79f6-bc67-41c5-80b2-b2f400d73445',
|
|
283
|
+
label: 'Hex nut drivers',
|
|
284
|
+
openInNewTab: false,
|
|
285
|
+
type: 'link',
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/piston',
|
|
289
|
+
image: null,
|
|
290
|
+
key: '365eb4e9-8ea5-4ed0-9239-b2f400d7344c',
|
|
291
|
+
label: 'Piston',
|
|
292
|
+
openInNewTab: false,
|
|
293
|
+
type: 'link',
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/screwdriver-sets',
|
|
297
|
+
image: null,
|
|
298
|
+
key: 'c8cd57ca-4c6c-4ae0-8952-b2f400d73666',
|
|
299
|
+
label: 'Screwdriver sets',
|
|
300
|
+
openInNewTab: false,
|
|
301
|
+
type: 'link',
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/hammer-impact',
|
|
305
|
+
image: null,
|
|
306
|
+
key: 'e4ac3f2b-54ff-48ab-ad9b-b2f400d736c1',
|
|
307
|
+
label: 'Hammer impact',
|
|
308
|
+
openInNewTab: false,
|
|
309
|
+
type: 'link',
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
href: '/Catalog/tools/hand-tools/screwdrivers/t-handles',
|
|
313
|
+
image: null,
|
|
314
|
+
key: '86c1f132-edff-4833-9870-b2f400d73f61',
|
|
315
|
+
label: 'T-handles',
|
|
316
|
+
openInNewTab: false,
|
|
317
|
+
type: 'link',
|
|
318
|
+
},
|
|
319
|
+
],
|
|
320
|
+
key: '93abb293-ee5b-4835-ada0-b2f400d73415',
|
|
321
|
+
label: 'Screwdrivers',
|
|
322
|
+
openInNewTab: false,
|
|
323
|
+
type: 'link-group',
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
href: '/Catalog/tools/hand-tools/pliers',
|
|
327
|
+
image: null,
|
|
328
|
+
items: [
|
|
329
|
+
{
|
|
330
|
+
href: '/Catalog/tools/hand-tools/pliers/crimping',
|
|
331
|
+
image: null,
|
|
332
|
+
key: '170a6c84-5700-4d7a-a93d-b2f400d7347b',
|
|
333
|
+
label: 'Crimping',
|
|
334
|
+
openInNewTab: false,
|
|
335
|
+
type: 'link',
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
href: '/Catalog/tools/hand-tools/pliers/combination',
|
|
339
|
+
image: null,
|
|
340
|
+
key: '96dfae13-0870-4fb6-a5bb-b2f400d73786',
|
|
341
|
+
label: 'Combination',
|
|
342
|
+
openInNewTab: false,
|
|
343
|
+
type: 'link',
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
href: '/Catalog/tools/hand-tools/pliers/cutting',
|
|
347
|
+
image: null,
|
|
348
|
+
key: 'f372f3d6-926a-4323-a211-b2f400d7378b',
|
|
349
|
+
label: 'Cutting',
|
|
350
|
+
openInNewTab: false,
|
|
351
|
+
type: 'link',
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
href: '/Catalog/tools/hand-tools/pliers/long-nose',
|
|
355
|
+
image: null,
|
|
356
|
+
key: 'bac3c95e-85ab-42b0-9666-b2f400d73790',
|
|
357
|
+
label: 'Long nose',
|
|
358
|
+
openInNewTab: false,
|
|
359
|
+
type: 'link',
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
href: '/Catalog/tools/hand-tools/pliers/vde',
|
|
363
|
+
image: null,
|
|
364
|
+
key: 'afc988a4-87f1-4590-af6d-b2f400d73795',
|
|
365
|
+
label: 'VDE',
|
|
366
|
+
openInNewTab: false,
|
|
367
|
+
type: 'link',
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
href: '/Catalog/tools/hand-tools/pliers/wire-strippers',
|
|
371
|
+
image: null,
|
|
372
|
+
key: 'b3cf1045-c19e-49a2-adcf-b2f400d73799',
|
|
373
|
+
label: 'Wire strippers',
|
|
374
|
+
openInNewTab: false,
|
|
375
|
+
type: 'link',
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
href: '/Catalog/tools/hand-tools/pliers/waterpump',
|
|
379
|
+
image: null,
|
|
380
|
+
key: 'ab80748a-280a-4e53-b840-b2f400d7379f',
|
|
381
|
+
label: 'Waterpump',
|
|
382
|
+
openInNewTab: false,
|
|
383
|
+
type: 'link',
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
href: '/Catalog/tools/hand-tools/pliers/snap-ring',
|
|
387
|
+
image: null,
|
|
388
|
+
key: '1658734d-a926-4c35-bd53-b2f400d737a4',
|
|
389
|
+
label: 'Snap ring',
|
|
390
|
+
openInNewTab: false,
|
|
391
|
+
type: 'link',
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
href: '/Catalog/tools/hand-tools/pliers/mini',
|
|
395
|
+
image: null,
|
|
396
|
+
key: '6b2acec2-ce1b-4e18-8b20-b2f400d737a9',
|
|
397
|
+
label: 'Mini',
|
|
398
|
+
openInNewTab: false,
|
|
399
|
+
type: 'link',
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
href: '/Catalog/tools/hand-tools/pliers/locking',
|
|
403
|
+
image: null,
|
|
404
|
+
key: '69e306cf-f47b-4a70-acd8-b2f400d737ae',
|
|
405
|
+
label: 'Locking',
|
|
406
|
+
openInNewTab: false,
|
|
407
|
+
type: 'link',
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
href: '/Catalog/tools/hand-tools/pliers/riveting',
|
|
411
|
+
image: null,
|
|
412
|
+
key: '9905e6dd-cb9f-4078-8f9f-b2f400d737b3',
|
|
413
|
+
label: 'Riveting',
|
|
414
|
+
openInNewTab: false,
|
|
415
|
+
type: 'link',
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
href: '/Catalog/tools/hand-tools/pliers/oil-filter',
|
|
419
|
+
image: null,
|
|
420
|
+
key: '9bea6006-c7cb-4445-a49d-b2f400d737b8',
|
|
421
|
+
label: 'Oil filter',
|
|
422
|
+
openInNewTab: false,
|
|
423
|
+
type: 'link',
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
href: '/Catalog/tools/hand-tools/pliers/pliers-sets',
|
|
427
|
+
image: null,
|
|
428
|
+
key: '72b03c0b-633d-4f67-8652-b2f400d737c3',
|
|
429
|
+
label: 'Pliers sets',
|
|
430
|
+
openInNewTab: false,
|
|
431
|
+
type: 'link',
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
href: '/Catalog/tools/hand-tools/pliers/circlip',
|
|
435
|
+
image: null,
|
|
436
|
+
key: '2c8ed3ad-8ee6-4d7c-abae-b2f400d749e7',
|
|
437
|
+
label: 'Circlip',
|
|
438
|
+
openInNewTab: false,
|
|
439
|
+
type: 'link',
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
href: '/Catalog/tools/hand-tools/pliers/plug',
|
|
443
|
+
image: null,
|
|
444
|
+
key: '31c5de35-2a12-4ed0-afd5-b2f400d749fc',
|
|
445
|
+
label: 'Plug',
|
|
446
|
+
openInNewTab: false,
|
|
447
|
+
type: 'link',
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
href: '/Catalog/tools/hand-tools/pliers/multi-grip',
|
|
451
|
+
image: null,
|
|
452
|
+
key: 'd8c1114e-d9fd-4cca-88a4-b2f400d74a0f',
|
|
453
|
+
label: 'Multi-grip',
|
|
454
|
+
openInNewTab: false,
|
|
455
|
+
type: 'link',
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
href: '/Catalog/tools/hand-tools/pliers/wheel',
|
|
459
|
+
image: null,
|
|
460
|
+
key: '09a8da50-fcd0-4a0a-aea6-b2f400d74a21',
|
|
461
|
+
label: 'Wheel',
|
|
462
|
+
openInNewTab: false,
|
|
463
|
+
type: 'link',
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
href: '/Catalog/tools/hand-tools/pliers/scissor',
|
|
467
|
+
image: null,
|
|
468
|
+
key: 'cb9a5a9d-274f-4425-8e3b-b2f400d74a34',
|
|
469
|
+
label: 'Scissor',
|
|
470
|
+
openInNewTab: false,
|
|
471
|
+
type: 'link',
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
href: '/Catalog/tools/hand-tools/pliers/safety-wire',
|
|
475
|
+
image: null,
|
|
476
|
+
key: '057a6df1-343a-4f25-b9f6-b2f400d74a46',
|
|
477
|
+
label: 'Safety wire',
|
|
478
|
+
openInNewTab: false,
|
|
479
|
+
type: 'link',
|
|
480
|
+
},
|
|
481
|
+
],
|
|
482
|
+
key: 'a36111c1-ecfb-4c76-bef5-b2f400d73472',
|
|
483
|
+
label: 'Pliers',
|
|
484
|
+
openInNewTab: false,
|
|
485
|
+
type: 'link-group',
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
href: '/Catalog/tools/hand-tools/sockets',
|
|
489
|
+
image: null,
|
|
490
|
+
items: [
|
|
491
|
+
{
|
|
492
|
+
href: '/Catalog/tools/hand-tools/sockets/socket-sets',
|
|
493
|
+
image: null,
|
|
494
|
+
key: '7a36cb5d-9afd-46e7-855f-b2f400d7367a',
|
|
495
|
+
label: 'Socket sets',
|
|
496
|
+
openInNewTab: false,
|
|
497
|
+
type: 'link',
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
href: '/Catalog/tools/hand-tools/sockets/6-point',
|
|
501
|
+
image: null,
|
|
502
|
+
key: 'b77828b6-01dc-453e-ac38-b2f400d736d2',
|
|
503
|
+
label: '6-point',
|
|
504
|
+
openInNewTab: false,
|
|
505
|
+
type: 'link',
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
href: '/Catalog/tools/hand-tools/sockets/12-point',
|
|
509
|
+
image: null,
|
|
510
|
+
key: '8636736e-becd-42e1-a82b-b2f400d736dc',
|
|
511
|
+
label: '12-point',
|
|
512
|
+
openInNewTab: false,
|
|
513
|
+
type: 'link',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
href: '/Catalog/tools/hand-tools/sockets/inches-sae',
|
|
517
|
+
image: null,
|
|
518
|
+
key: 'f923c19a-773e-4233-947a-b2f400d736e5',
|
|
519
|
+
label: 'Inches (SAE)',
|
|
520
|
+
openInNewTab: false,
|
|
521
|
+
type: 'link',
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
href: '/Catalog/tools/hand-tools/sockets/tx-e',
|
|
525
|
+
image: null,
|
|
526
|
+
key: '3cf8bed6-697c-4821-b76f-b2f400d736ee',
|
|
527
|
+
label: 'TX-E',
|
|
528
|
+
openInNewTab: false,
|
|
529
|
+
type: 'link',
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
href: '/Catalog/tools/hand-tools/sockets/cardan',
|
|
533
|
+
image: null,
|
|
534
|
+
key: '444b4669-3c36-4a1a-963b-b2f400d736f5',
|
|
535
|
+
label: 'Cardan',
|
|
536
|
+
openInNewTab: false,
|
|
537
|
+
type: 'link',
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
href: '/Catalog/tools/hand-tools/sockets/wheel',
|
|
541
|
+
image: null,
|
|
542
|
+
key: 'ac8face8-2d8b-4af6-a6e7-b2f400d736fd',
|
|
543
|
+
label: 'Wheel',
|
|
544
|
+
openInNewTab: false,
|
|
545
|
+
type: 'link',
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
href: '/Catalog/tools/hand-tools/sockets/impact-6-point',
|
|
549
|
+
image: null,
|
|
550
|
+
key: '3491f3cc-102f-4689-b39d-b2f400d73705',
|
|
551
|
+
label: 'Impact 6-point',
|
|
552
|
+
openInNewTab: false,
|
|
553
|
+
type: 'link',
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
href: '/Catalog/tools/hand-tools/sockets/impact-12-point',
|
|
557
|
+
image: null,
|
|
558
|
+
key: '2bb39764-233f-48c0-ae7f-b2f400d7370f',
|
|
559
|
+
label: 'Impact 12-point',
|
|
560
|
+
openInNewTab: false,
|
|
561
|
+
type: 'link',
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
href: '/Catalog/tools/hand-tools/sockets/impact-tx-e',
|
|
565
|
+
image: null,
|
|
566
|
+
key: '5f6cd16f-3bea-44d8-8c6b-b2f400d73717',
|
|
567
|
+
label: 'Impact TX-E',
|
|
568
|
+
openInNewTab: false,
|
|
569
|
+
type: 'link',
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
href: '/Catalog/tools/hand-tools/sockets/spark-plug',
|
|
573
|
+
image: null,
|
|
574
|
+
key: '9ce42580-5808-4ebd-b7e6-b2f400d7372f',
|
|
575
|
+
label: 'Spark plug',
|
|
576
|
+
openInNewTab: false,
|
|
577
|
+
type: 'link',
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
href: '/Catalog/tools/hand-tools/sockets/vde',
|
|
581
|
+
image: null,
|
|
582
|
+
key: '52afd7e8-03fa-4952-8325-b2f400d73739',
|
|
583
|
+
label: 'VDE',
|
|
584
|
+
openInNewTab: false,
|
|
585
|
+
type: 'link',
|
|
586
|
+
},
|
|
587
|
+
],
|
|
588
|
+
key: 'b6dbed96-1f0b-40bb-9fa4-b2f400d7366f',
|
|
589
|
+
label: 'Sockets',
|
|
590
|
+
openInNewTab: false,
|
|
591
|
+
type: 'link-group',
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
href: '/Catalog/tools/hand-tools/bit-sockets',
|
|
595
|
+
image: null,
|
|
596
|
+
items: [
|
|
597
|
+
{
|
|
598
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/bit-socket-sets',
|
|
599
|
+
image: null,
|
|
600
|
+
key: 'd6d93038-9488-43a3-894d-b2f400d736af',
|
|
601
|
+
label: 'Bit socket sets',
|
|
602
|
+
openInNewTab: false,
|
|
603
|
+
type: 'link',
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/ph',
|
|
607
|
+
image: null,
|
|
608
|
+
key: '440ddd4d-fd1c-4bfd-835b-b2f400d73816',
|
|
609
|
+
label: 'PH',
|
|
610
|
+
openInNewTab: false,
|
|
611
|
+
type: 'link',
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/pz',
|
|
615
|
+
image: null,
|
|
616
|
+
key: 'c4b8fe9a-2e7b-4f7e-b3d3-b2f400d7381c',
|
|
617
|
+
label: 'PZ',
|
|
618
|
+
openInNewTab: false,
|
|
619
|
+
type: 'link',
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/slotted',
|
|
623
|
+
image: null,
|
|
624
|
+
key: '56546e64-1cde-4305-acae-b2f400d73820',
|
|
625
|
+
label: 'Slotted',
|
|
626
|
+
openInNewTab: false,
|
|
627
|
+
type: 'link',
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/hex',
|
|
631
|
+
image: null,
|
|
632
|
+
key: 'abf3471a-3e50-402a-9f5d-b2f400d73826',
|
|
633
|
+
label: 'Hex',
|
|
634
|
+
openInNewTab: false,
|
|
635
|
+
type: 'link',
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/tx',
|
|
639
|
+
image: null,
|
|
640
|
+
key: '8a645a42-2f9d-4ee4-9010-b2f400d7382a',
|
|
641
|
+
label: 'TX',
|
|
642
|
+
openInNewTab: false,
|
|
643
|
+
type: 'link',
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/spline',
|
|
647
|
+
image: null,
|
|
648
|
+
key: 'd9a2ff9d-5339-4247-a239-b2f400d7382e',
|
|
649
|
+
label: 'Spline',
|
|
650
|
+
openInNewTab: false,
|
|
651
|
+
type: 'link',
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/ribe',
|
|
655
|
+
image: null,
|
|
656
|
+
key: 'b46448b8-9393-40a8-a533-b2f400d73f4f',
|
|
657
|
+
label: 'Ribe',
|
|
658
|
+
openInNewTab: false,
|
|
659
|
+
type: 'link',
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/five-star-ts',
|
|
663
|
+
image: null,
|
|
664
|
+
key: 'd14d38bc-8a95-4d5a-b003-b2f400d73f74',
|
|
665
|
+
label: 'Five star (TS)',
|
|
666
|
+
openInNewTab: false,
|
|
667
|
+
type: 'link',
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
href: '/Catalog/tools/hand-tools/bit-sockets/inches-sae',
|
|
671
|
+
image: null,
|
|
672
|
+
key: '6b27adf3-e333-4f68-9c73-b2f400d73f86',
|
|
673
|
+
label: 'Inches (SAE)',
|
|
674
|
+
openInNewTab: false,
|
|
675
|
+
type: 'link',
|
|
676
|
+
},
|
|
677
|
+
],
|
|
678
|
+
key: '202fa68b-7fbf-4461-b98c-b2f400d736a9',
|
|
679
|
+
label: 'Bit sockets',
|
|
680
|
+
openInNewTab: false,
|
|
681
|
+
type: 'link-group',
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
href: '/Catalog/tools/hand-tools/punches-and-chisels',
|
|
685
|
+
image: null,
|
|
686
|
+
items: [
|
|
687
|
+
{
|
|
688
|
+
href: '/Catalog/tools/hand-tools/punches-and-chisels/taper-punches',
|
|
689
|
+
image: null,
|
|
690
|
+
key: 'd33d7789-f329-42cb-a3d9-b2f400d737d4',
|
|
691
|
+
label: 'Taper punches',
|
|
692
|
+
openInNewTab: false,
|
|
693
|
+
type: 'link',
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
href: '/Catalog/tools/hand-tools/punches-and-chisels/center-punches',
|
|
697
|
+
image: null,
|
|
698
|
+
key: 'a2af17ef-4e26-4c4a-983e-b2f400d737d8',
|
|
699
|
+
label: 'Center punches',
|
|
700
|
+
openInNewTab: false,
|
|
701
|
+
type: 'link',
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
href: '/Catalog/tools/hand-tools/punches-and-chisels/pin-punches',
|
|
705
|
+
image: null,
|
|
706
|
+
key: 'ccf06295-e62d-45c3-b9be-b2f400d737de',
|
|
707
|
+
label: 'Pin punches',
|
|
708
|
+
openInNewTab: false,
|
|
709
|
+
type: 'link',
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
href: '/Catalog/tools/hand-tools/punches-and-chisels/chisels',
|
|
713
|
+
image: null,
|
|
714
|
+
key: '48ac1fe9-aa06-4701-ad44-b2f400d737e3',
|
|
715
|
+
label: 'Chisels',
|
|
716
|
+
openInNewTab: false,
|
|
717
|
+
type: 'link',
|
|
718
|
+
},
|
|
719
|
+
],
|
|
720
|
+
key: '90a5dfa7-cf07-4044-9db4-b2f400d737ce',
|
|
721
|
+
label: 'Punches and chisels',
|
|
722
|
+
openInNewTab: false,
|
|
723
|
+
type: 'link-group',
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
href: '/Catalog/tools/hand-tools/ratchets',
|
|
727
|
+
image: null,
|
|
728
|
+
items: [
|
|
729
|
+
{
|
|
730
|
+
href: '/Catalog/tools/hand-tools/ratchets/ratchets',
|
|
731
|
+
image: null,
|
|
732
|
+
key: 'a885c9b0-9ae4-418a-a4c2-b2f400d737ec',
|
|
733
|
+
label: 'Ratchets',
|
|
734
|
+
openInNewTab: false,
|
|
735
|
+
type: 'link',
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
href: '/Catalog/tools/hand-tools/ratchets/flexible',
|
|
739
|
+
image: null,
|
|
740
|
+
key: 'f776aad7-27df-43f9-bbbd-b2f400d737f1',
|
|
741
|
+
label: 'Flexible',
|
|
742
|
+
openInNewTab: false,
|
|
743
|
+
type: 'link',
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
href: '/Catalog/tools/hand-tools/ratchets/twister',
|
|
747
|
+
image: null,
|
|
748
|
+
key: '8b4d47f9-67af-4198-82d1-b2f400d737f6',
|
|
749
|
+
label: 'Twister',
|
|
750
|
+
openInNewTab: false,
|
|
751
|
+
type: 'link',
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
href: '/Catalog/tools/hand-tools/ratchets/telescopic',
|
|
755
|
+
image: null,
|
|
756
|
+
key: '8eb928b1-1863-4fb5-a565-b2f400d737fa',
|
|
757
|
+
label: 'Telescopic',
|
|
758
|
+
openInNewTab: false,
|
|
759
|
+
type: 'link',
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
href: '/Catalog/tools/hand-tools/ratchets/repair-kits',
|
|
763
|
+
image: null,
|
|
764
|
+
key: 'a0a71af3-99c3-4cf8-acc7-b2f400d73805',
|
|
765
|
+
label: 'Repair kits',
|
|
766
|
+
openInNewTab: false,
|
|
767
|
+
type: 'link',
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
href: '/Catalog/tools/hand-tools/ratchets/ratchet-sets',
|
|
771
|
+
image: null,
|
|
772
|
+
key: '8fe9df2f-8bc0-4a3f-8bad-b2f400d74a75',
|
|
773
|
+
label: 'Ratchet sets',
|
|
774
|
+
openInNewTab: false,
|
|
775
|
+
type: 'link',
|
|
776
|
+
},
|
|
777
|
+
],
|
|
778
|
+
key: 'c5cf67ca-5112-4db6-9ef3-b2f400d737e7',
|
|
779
|
+
label: 'Ratchets',
|
|
780
|
+
openInNewTab: false,
|
|
781
|
+
type: 'link-group',
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
href: '/Catalog/tools/hand-tools/bits',
|
|
785
|
+
image: null,
|
|
786
|
+
items: [
|
|
787
|
+
{
|
|
788
|
+
href: '/Catalog/tools/hand-tools/bits/ph',
|
|
789
|
+
image: null,
|
|
790
|
+
key: 'b947d88b-dad2-4e10-8d2f-b2f400d7383d',
|
|
791
|
+
label: 'PH',
|
|
792
|
+
openInNewTab: false,
|
|
793
|
+
type: 'link',
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
href: '/Catalog/tools/hand-tools/bits/pz',
|
|
797
|
+
image: null,
|
|
798
|
+
key: '7049086a-8ff6-4382-979c-b2f400d73842',
|
|
799
|
+
label: 'PZ',
|
|
800
|
+
openInNewTab: false,
|
|
801
|
+
type: 'link',
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
href: '/Catalog/tools/hand-tools/bits/slotted',
|
|
805
|
+
image: null,
|
|
806
|
+
key: 'df6ec868-ec4c-4847-8892-b2f400d73846',
|
|
807
|
+
label: 'Slotted',
|
|
808
|
+
openInNewTab: false,
|
|
809
|
+
type: 'link',
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
href: '/Catalog/tools/hand-tools/bits/hex',
|
|
813
|
+
image: null,
|
|
814
|
+
key: 'e87d5748-09cc-4437-bce3-b2f400d7384b',
|
|
815
|
+
label: 'Hex',
|
|
816
|
+
openInNewTab: false,
|
|
817
|
+
type: 'link',
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
href: '/Catalog/tools/hand-tools/bits/tx',
|
|
821
|
+
image: null,
|
|
822
|
+
key: '073bc39e-8838-4ad8-8ce5-b2f400d73850',
|
|
823
|
+
label: 'TX',
|
|
824
|
+
openInNewTab: false,
|
|
825
|
+
type: 'link',
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
href: '/Catalog/tools/hand-tools/bits/spline',
|
|
829
|
+
image: null,
|
|
830
|
+
key: '241c4489-375e-40e4-9855-b2f400d73855',
|
|
831
|
+
label: 'Spline',
|
|
832
|
+
openInNewTab: false,
|
|
833
|
+
type: 'link',
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
href: '/Catalog/tools/hand-tools/bits/bit-sets',
|
|
837
|
+
image: null,
|
|
838
|
+
key: '8b13cb84-5f07-4150-b694-b2f400d7385a',
|
|
839
|
+
label: 'Bit sets',
|
|
840
|
+
openInNewTab: false,
|
|
841
|
+
type: 'link',
|
|
842
|
+
},
|
|
843
|
+
],
|
|
844
|
+
key: 'bae52465-a468-4c2c-b934-b2f400d73839',
|
|
845
|
+
label: 'Bits',
|
|
846
|
+
openInNewTab: false,
|
|
847
|
+
type: 'link-group',
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
href: '/Catalog/tools/hand-tools/adaptors',
|
|
851
|
+
image: null,
|
|
852
|
+
items: [
|
|
853
|
+
{
|
|
854
|
+
href: '/Catalog/tools/hand-tools/adaptors/adaptors',
|
|
855
|
+
image: null,
|
|
856
|
+
key: '64cd6079-333d-40c6-b4bd-b2f400d73863',
|
|
857
|
+
label: 'Adaptors',
|
|
858
|
+
openInNewTab: false,
|
|
859
|
+
type: 'link',
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
href: '/Catalog/tools/hand-tools/adaptors/impact',
|
|
863
|
+
image: null,
|
|
864
|
+
key: '646cb5d6-bd28-4bb8-9b66-b2f400d73868',
|
|
865
|
+
label: 'Impact',
|
|
866
|
+
openInNewTab: false,
|
|
867
|
+
type: 'link',
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
href: '/Catalog/tools/hand-tools/adaptors/universal-joints',
|
|
871
|
+
image: null,
|
|
872
|
+
key: 'a5874d0b-0a2e-44b0-9e6d-b2f400d7386e',
|
|
873
|
+
label: 'Universal joints',
|
|
874
|
+
openInNewTab: false,
|
|
875
|
+
type: 'link',
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
href: '/Catalog/tools/hand-tools/adaptors/universal-impact-joints',
|
|
879
|
+
image: null,
|
|
880
|
+
key: '564df375-af2e-48d3-b74c-b2f400d73873',
|
|
881
|
+
label: 'Universal Impact Joints',
|
|
882
|
+
openInNewTab: false,
|
|
883
|
+
type: 'link',
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
href: '/Catalog/tools/hand-tools/adaptors/adaptor-sets',
|
|
887
|
+
image: null,
|
|
888
|
+
key: 'cd1db9ba-5a26-4de8-aa46-b2f400d73ed0',
|
|
889
|
+
label: 'Adaptor sets',
|
|
890
|
+
openInNewTab: false,
|
|
891
|
+
type: 'link',
|
|
892
|
+
},
|
|
893
|
+
],
|
|
894
|
+
key: 'fdf65bf0-a213-45b9-ae3c-b2f400d7385e',
|
|
895
|
+
label: 'Adaptors',
|
|
896
|
+
openInNewTab: false,
|
|
897
|
+
type: 'link-group',
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
href: '/Catalog/tools/hand-tools/bit-holders',
|
|
901
|
+
image: null,
|
|
902
|
+
key: 'b90bae2d-5bb0-44a8-b705-b2f400d73878',
|
|
903
|
+
label: 'Bit holders',
|
|
904
|
+
openInNewTab: false,
|
|
905
|
+
type: 'link',
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
href: '/Catalog/tools/hand-tools/magnets',
|
|
909
|
+
image: null,
|
|
910
|
+
key: '9f9125fc-568e-45e7-abf7-b2f400d7387c',
|
|
911
|
+
label: 'Magnets',
|
|
912
|
+
openInNewTab: false,
|
|
913
|
+
type: 'link',
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
href: '/Catalog/tools/hand-tools/extensions',
|
|
917
|
+
image: null,
|
|
918
|
+
items: [
|
|
919
|
+
{
|
|
920
|
+
href: '/Catalog/tools/hand-tools/extensions/extensions',
|
|
921
|
+
image: null,
|
|
922
|
+
key: '5780dc45-8b95-48f5-aae4-b2f400d73886',
|
|
923
|
+
label: 'Extensions',
|
|
924
|
+
openInNewTab: false,
|
|
925
|
+
type: 'link',
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
href: '/Catalog/tools/hand-tools/extensions/lock-in',
|
|
929
|
+
image: null,
|
|
930
|
+
key: 'db7676e1-55a0-46e7-ae00-b2f400d7388a',
|
|
931
|
+
label: 'Lock-In',
|
|
932
|
+
openInNewTab: false,
|
|
933
|
+
type: 'link',
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
href: '/Catalog/tools/hand-tools/extensions/cardan',
|
|
937
|
+
image: null,
|
|
938
|
+
key: 'c331d835-7ee5-4be6-9a36-b2f400d73890',
|
|
939
|
+
label: 'Cardan',
|
|
940
|
+
openInNewTab: false,
|
|
941
|
+
type: 'link',
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
href: '/Catalog/tools/hand-tools/extensions/impact',
|
|
945
|
+
image: null,
|
|
946
|
+
key: 'e8f1e834-3e25-4717-a6be-b2f400d73896',
|
|
947
|
+
label: 'Impact',
|
|
948
|
+
openInNewTab: false,
|
|
949
|
+
type: 'link',
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
href: '/Catalog/tools/hand-tools/extensions/swivel-handles',
|
|
953
|
+
image: null,
|
|
954
|
+
key: 'c5070056-0458-4cea-8bba-b2f400d73899',
|
|
955
|
+
label: 'Swivel handles',
|
|
956
|
+
openInNewTab: false,
|
|
957
|
+
type: 'link',
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
href: '/Catalog/tools/hand-tools/extensions/sliding-t-handles',
|
|
961
|
+
image: null,
|
|
962
|
+
key: '4db9fa0e-3934-4acc-911f-b2f400d738a1',
|
|
963
|
+
label: 'Sliding t-handles',
|
|
964
|
+
openInNewTab: false,
|
|
965
|
+
type: 'link',
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
href: '/Catalog/tools/hand-tools/extensions/repair-kits',
|
|
969
|
+
image: null,
|
|
970
|
+
key: 'be403fa2-27bc-4625-9095-b2f400d738a7',
|
|
971
|
+
label: 'Repair kits',
|
|
972
|
+
openInNewTab: false,
|
|
973
|
+
type: 'link',
|
|
974
|
+
},
|
|
975
|
+
],
|
|
976
|
+
key: 'f55f7541-31bd-4fb0-93f1-b2f400d7387f',
|
|
977
|
+
label: 'Extensions',
|
|
978
|
+
openInNewTab: false,
|
|
979
|
+
type: 'link-group',
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
href: '/Catalog/tools/hand-tools/cutting-tools',
|
|
983
|
+
image: null,
|
|
984
|
+
key: '4e9e01a3-54f7-426e-9d8e-b2f400d738aa',
|
|
985
|
+
label: 'Cutting tools',
|
|
986
|
+
openInNewTab: false,
|
|
987
|
+
type: 'link',
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
href: '/Catalog/tools/hand-tools/files',
|
|
991
|
+
image: null,
|
|
992
|
+
key: '4817c885-cd1f-434f-acca-b2f400d738b9',
|
|
993
|
+
label: 'Files',
|
|
994
|
+
openInNewTab: false,
|
|
995
|
+
type: 'link',
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
href: '/Catalog/tools/hand-tools/panel-removers',
|
|
999
|
+
image: null,
|
|
1000
|
+
key: '91fc2285-ea26-4fa1-a669-b2f400d738be',
|
|
1001
|
+
label: 'Panel removers',
|
|
1002
|
+
openInNewTab: false,
|
|
1003
|
+
type: 'link',
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
href: '/Catalog/tools/hand-tools/wire-brushes',
|
|
1007
|
+
image: null,
|
|
1008
|
+
key: '9c434710-60e1-45c8-9cf8-b2f400d738c2',
|
|
1009
|
+
label: 'Wire brushes',
|
|
1010
|
+
openInNewTab: false,
|
|
1011
|
+
type: 'link',
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
href: '/Catalog/tools/hand-tools/pry-bars',
|
|
1015
|
+
image: null,
|
|
1016
|
+
key: 'cf4409f7-d95f-4d84-91b2-b2f400d738c7',
|
|
1017
|
+
label: 'Pry bars',
|
|
1018
|
+
openInNewTab: false,
|
|
1019
|
+
type: 'link',
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
href: '/Catalog/tools/hand-tools/socket-rails',
|
|
1023
|
+
image: null,
|
|
1024
|
+
items: [
|
|
1025
|
+
{
|
|
1026
|
+
href: '/Catalog/tools/hand-tools/socket-rails/14',
|
|
1027
|
+
image: null,
|
|
1028
|
+
key: '93352fd1-868c-4e88-bfd5-b2f400d73ff8',
|
|
1029
|
+
label: "1/4''",
|
|
1030
|
+
openInNewTab: false,
|
|
1031
|
+
type: 'link',
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
href: '/Catalog/tools/hand-tools/socket-rails/38',
|
|
1035
|
+
image: null,
|
|
1036
|
+
key: '9ebb9c9a-10a5-498e-b317-b2f400d7400c',
|
|
1037
|
+
label: "3/8''",
|
|
1038
|
+
openInNewTab: false,
|
|
1039
|
+
type: 'link',
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
href: '/Catalog/tools/hand-tools/socket-rails/12',
|
|
1043
|
+
image: null,
|
|
1044
|
+
key: '6b7e092a-c38e-421f-ac6d-b2f400d74020',
|
|
1045
|
+
label: "1/2''",
|
|
1046
|
+
openInNewTab: false,
|
|
1047
|
+
type: 'link',
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
href: '/Catalog/tools/hand-tools/socket-rails/empty',
|
|
1051
|
+
image: null,
|
|
1052
|
+
key: '334c86f8-5af4-4d0a-b9cb-b2f400d74032',
|
|
1053
|
+
label: 'Empty',
|
|
1054
|
+
openInNewTab: false,
|
|
1055
|
+
type: 'link',
|
|
1056
|
+
},
|
|
1057
|
+
],
|
|
1058
|
+
key: 'bf98be00-5c0e-410d-b25c-b2f400d73ff4',
|
|
1059
|
+
label: 'Socket rails',
|
|
1060
|
+
openInNewTab: false,
|
|
1061
|
+
type: 'link-group',
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
href: '/Catalog/tools/hand-tools/hammers',
|
|
1065
|
+
image: null,
|
|
1066
|
+
key: 'bc2fe921-f32e-4e18-847f-b2f400d749b6',
|
|
1067
|
+
label: 'Hammers',
|
|
1068
|
+
openInNewTab: false,
|
|
1069
|
+
type: 'link',
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
href: '/Catalog/tools/hand-tools/hooks',
|
|
1073
|
+
image: null,
|
|
1074
|
+
key: 'bcd9ceb7-2984-4a6a-888c-b2f400d74aa9',
|
|
1075
|
+
label: 'Hooks',
|
|
1076
|
+
openInNewTab: false,
|
|
1077
|
+
type: 'link',
|
|
1078
|
+
},
|
|
1079
|
+
],
|
|
1080
|
+
key: 'a4571cc2-150a-470f-a0bf-b2f400d7333c',
|
|
1081
|
+
label: 'Hand tools',
|
|
1082
|
+
openInNewTab: false,
|
|
1083
|
+
type: 'link-group',
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
href: '/Catalog/tools/special-tools',
|
|
1087
|
+
image: null,
|
|
1088
|
+
items: [
|
|
1089
|
+
{
|
|
1090
|
+
href: '/Catalog/tools/special-tools/interior-removal-sets',
|
|
1091
|
+
image: null,
|
|
1092
|
+
key: 'cc6c62f3-deee-4fb9-9258-b2f400d7346a',
|
|
1093
|
+
label: 'Interior removal sets',
|
|
1094
|
+
openInNewTab: false,
|
|
1095
|
+
type: 'link',
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
href: '/Catalog/tools/special-tools/hose-clamps',
|
|
1099
|
+
image: null,
|
|
1100
|
+
key: 'a9bee5d5-4599-47d2-81ce-b2f400d73483',
|
|
1101
|
+
label: 'Hose clamps',
|
|
1102
|
+
openInNewTab: false,
|
|
1103
|
+
type: 'link',
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
href: '/Catalog/tools/special-tools/alternator-sets',
|
|
1107
|
+
image: null,
|
|
1108
|
+
key: 'e3bc00fa-3293-44bc-91ca-b2f400d734a3',
|
|
1109
|
+
label: 'Alternator sets',
|
|
1110
|
+
openInNewTab: false,
|
|
1111
|
+
type: 'link',
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
href: '/Catalog/tools/special-tools/oil-filter-sockets-and-drain-plug-key-sets',
|
|
1115
|
+
image: null,
|
|
1116
|
+
key: 'f81fbb93-6b41-4e5a-88a4-b2f400d734ae',
|
|
1117
|
+
label: 'Oil filter sockets and drain plug key sets',
|
|
1118
|
+
openInNewTab: false,
|
|
1119
|
+
type: 'link',
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
href: '/Catalog/tools/special-tools/brake-tools',
|
|
1123
|
+
image: null,
|
|
1124
|
+
key: '63500b2d-2eb9-49e5-8db0-b2f400d734b6',
|
|
1125
|
+
label: 'Brake tools',
|
|
1126
|
+
openInNewTab: false,
|
|
1127
|
+
type: 'link',
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
href: '/Catalog/tools/special-tools/ball-joint-seperators',
|
|
1131
|
+
image: null,
|
|
1132
|
+
key: '0d4af3e1-d0e9-4be1-8b3c-b2f400d734bd',
|
|
1133
|
+
label: 'Ball joint seperators',
|
|
1134
|
+
openInNewTab: false,
|
|
1135
|
+
type: 'link',
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
href: '/Catalog/tools/special-tools/test-and-measuring-tools',
|
|
1139
|
+
image: null,
|
|
1140
|
+
key: '869656a1-fd5f-4a0c-b6fd-b2f400d734c5',
|
|
1141
|
+
label: 'Test and measuring tools',
|
|
1142
|
+
openInNewTab: false,
|
|
1143
|
+
type: 'link',
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
href: '/Catalog/tools/special-tools/puller-sets',
|
|
1147
|
+
image: null,
|
|
1148
|
+
key: '13143388-c764-4eac-832b-b2f400d734ce',
|
|
1149
|
+
label: 'Puller sets',
|
|
1150
|
+
openInNewTab: false,
|
|
1151
|
+
type: 'link',
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
href: '/Catalog/tools/special-tools/terminal-release-tool-sets',
|
|
1155
|
+
image: null,
|
|
1156
|
+
key: '8d5a745e-c896-4eb4-a45c-b2f400d734d7',
|
|
1157
|
+
label: 'Terminal release tool sets',
|
|
1158
|
+
openInNewTab: false,
|
|
1159
|
+
type: 'link',
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
href: '/Catalog/tools/special-tools/windshield-removal-tools',
|
|
1163
|
+
image: null,
|
|
1164
|
+
key: '67399212-8177-4b4a-b87b-b2f400d746b7',
|
|
1165
|
+
label: 'Windshield removal tools',
|
|
1166
|
+
openInNewTab: false,
|
|
1167
|
+
type: 'link',
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
href: '/Catalog/tools/special-tools/airconditioning-sets',
|
|
1171
|
+
image: null,
|
|
1172
|
+
key: '8b6e5f87-1709-489b-8843-b2f400d74ab0',
|
|
1173
|
+
label: 'Airconditioning sets',
|
|
1174
|
+
openInNewTab: false,
|
|
1175
|
+
type: 'link',
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
href: '/Catalog/tools/special-tools/fuel-system-tools',
|
|
1179
|
+
image: null,
|
|
1180
|
+
key: 'ec99e7dd-1719-4444-a665-b2f400d74ab6',
|
|
1181
|
+
label: 'Fuel system tools',
|
|
1182
|
+
openInNewTab: false,
|
|
1183
|
+
type: 'link',
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
href: '/Catalog/tools/special-tools/camshaft-tools',
|
|
1187
|
+
image: null,
|
|
1188
|
+
key: 'a8133ada-e196-41d8-a4db-b2f400d74abb',
|
|
1189
|
+
label: 'Camshaft tools',
|
|
1190
|
+
openInNewTab: false,
|
|
1191
|
+
type: 'link',
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
href: '/Catalog/tools/special-tools/crankshaft-tools',
|
|
1195
|
+
image: null,
|
|
1196
|
+
key: '3c0e198e-2c58-47cb-a527-b2f400d74ac0',
|
|
1197
|
+
label: 'Crankshaft tools',
|
|
1198
|
+
openInNewTab: false,
|
|
1199
|
+
type: 'link',
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
href: '/Catalog/tools/special-tools/axial-joint-tools',
|
|
1203
|
+
image: null,
|
|
1204
|
+
key: 'cd6c0209-c3bb-4c6b-8955-b2f400d74ac4',
|
|
1205
|
+
label: 'Axial joint tools',
|
|
1206
|
+
openInNewTab: false,
|
|
1207
|
+
type: 'link',
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
href: '/Catalog/tools/special-tools/crawfoots',
|
|
1211
|
+
image: null,
|
|
1212
|
+
key: '54b1a2a7-35d0-4e17-ade2-b2f400d74aca',
|
|
1213
|
+
label: 'Crawfoots',
|
|
1214
|
+
openInNewTab: false,
|
|
1215
|
+
type: 'link',
|
|
1216
|
+
},
|
|
1217
|
+
],
|
|
1218
|
+
key: '793a8f1d-fe8c-4272-9c5c-b2f400d73462',
|
|
1219
|
+
label: 'Special tools',
|
|
1220
|
+
openInNewTab: false,
|
|
1221
|
+
type: 'link-group',
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
href: '/Catalog/tools/timing-tools',
|
|
1225
|
+
image: null,
|
|
1226
|
+
key: 'a8bf97d7-73ed-4c11-9ff0-b2f400d73514',
|
|
1227
|
+
label: 'Timing tools',
|
|
1228
|
+
openInNewTab: false,
|
|
1229
|
+
type: 'link',
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
href: '/Catalog/tools/cases',
|
|
1233
|
+
image: null,
|
|
1234
|
+
key: '2d12065c-c3ce-4156-9f63-b2f400d7362f',
|
|
1235
|
+
label: 'Cases',
|
|
1236
|
+
openInNewTab: false,
|
|
1237
|
+
type: 'link',
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
href: '/Catalog/tools/topboxes',
|
|
1241
|
+
image: null,
|
|
1242
|
+
key: '3592a07e-2073-4f0c-8b9b-b2f400d73644',
|
|
1243
|
+
label: 'Topboxes',
|
|
1244
|
+
openInNewTab: false,
|
|
1245
|
+
type: 'link',
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
href: '/Catalog/tools/portable-toolboxes',
|
|
1249
|
+
image: null,
|
|
1250
|
+
key: '3f5e3cb4-3b08-443b-b7a4-b2f400d7364f',
|
|
1251
|
+
label: 'Portable toolboxes',
|
|
1252
|
+
openInNewTab: false,
|
|
1253
|
+
type: 'link',
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
href: '/Catalog/tools/metal-box-system',
|
|
1257
|
+
image: null,
|
|
1258
|
+
key: '981fdcc0-30ed-490c-89e2-b2f400d73f27',
|
|
1259
|
+
label: 'Metal Box System',
|
|
1260
|
+
openInNewTab: false,
|
|
1261
|
+
type: 'link',
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
href: '/Catalog/tools/tool-tray-system',
|
|
1265
|
+
image: null,
|
|
1266
|
+
key: 'e122e0ec-058b-44ee-819c-b2f400d73f39',
|
|
1267
|
+
label: 'Tool Tray System',
|
|
1268
|
+
openInNewTab: false,
|
|
1269
|
+
type: 'link',
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
href: '/Catalog/tools/bmcs',
|
|
1273
|
+
image: null,
|
|
1274
|
+
items: [
|
|
1275
|
+
{
|
|
1276
|
+
href: '/Catalog/tools/bmcs/bmcs-14',
|
|
1277
|
+
image: null,
|
|
1278
|
+
key: '6dd5bf97-7312-455e-813f-b2f400d73f9a',
|
|
1279
|
+
label: "BMCS 1/4''",
|
|
1280
|
+
openInNewTab: false,
|
|
1281
|
+
type: 'link',
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
href: '/Catalog/tools/bmcs/bmcs-38',
|
|
1285
|
+
image: null,
|
|
1286
|
+
key: '89663762-e869-41d5-a80f-b2f400d73fab',
|
|
1287
|
+
label: "BMCS 3/8''",
|
|
1288
|
+
openInNewTab: false,
|
|
1289
|
+
type: 'link',
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
href: '/Catalog/tools/bmcs/bmcs-12',
|
|
1293
|
+
image: null,
|
|
1294
|
+
key: '9823a7a7-1175-45cc-a721-b2f400d73fbd',
|
|
1295
|
+
label: "BMCS 1/2''",
|
|
1296
|
+
openInNewTab: false,
|
|
1297
|
+
type: 'link',
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
href: '/Catalog/tools/bmcs/bmcs-empty',
|
|
1301
|
+
image: null,
|
|
1302
|
+
key: '52aff9ee-bc99-414d-81b9-b2f400d73fce',
|
|
1303
|
+
label: 'BMCS empty',
|
|
1304
|
+
openInNewTab: false,
|
|
1305
|
+
type: 'link',
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
href: '/Catalog/tools/bmcs/bmcs-special',
|
|
1309
|
+
image: null,
|
|
1310
|
+
key: '12cabade-3e91-4c45-a580-b2f400d73fe1',
|
|
1311
|
+
label: 'BMCS special',
|
|
1312
|
+
openInNewTab: false,
|
|
1313
|
+
type: 'link',
|
|
1314
|
+
},
|
|
1315
|
+
],
|
|
1316
|
+
key: 'd3ffe088-4ccb-4c5d-8743-b2f400d73f96',
|
|
1317
|
+
label: 'BMCS',
|
|
1318
|
+
openInNewTab: false,
|
|
1319
|
+
type: 'link-group',
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
href: '/Catalog/tools/tool-bags',
|
|
1323
|
+
image: null,
|
|
1324
|
+
key: '838a1c96-37c9-424d-8cc0-b2f400d740fa',
|
|
1325
|
+
label: 'Tool bags',
|
|
1326
|
+
openInNewTab: false,
|
|
1327
|
+
type: 'link',
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
href: '/Catalog/tools/new',
|
|
1331
|
+
image: null,
|
|
1332
|
+
key: 'bd7579f0-1454-44ec-8579-b2f400d74b0e',
|
|
1333
|
+
label: 'New',
|
|
1334
|
+
openInNewTab: false,
|
|
1335
|
+
type: 'link',
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
href: '/Catalog/tools/on-sale',
|
|
1339
|
+
image: null,
|
|
1340
|
+
key: 'd058a988-56b9-4839-9ddc-b2f400d74b11',
|
|
1341
|
+
label: 'On sale',
|
|
1342
|
+
openInNewTab: false,
|
|
1343
|
+
type: 'link',
|
|
1344
|
+
},
|
|
1345
|
+
],
|
|
1346
|
+
key: '54030856-52b1-4d9d-8b95-b2f400d73321',
|
|
1347
|
+
label: 'Tools',
|
|
1348
|
+
openInNewTab: false,
|
|
1349
|
+
type: 'link-group',
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
href: '/Catalog/equipment',
|
|
1353
|
+
image: {
|
|
1354
|
+
'1': 'https://images.sonic-equipment.com/categories/Equipment_.webp',
|
|
1355
|
+
'2': 'https://images.sonic-equipment.com/categories/Equipment_.webp',
|
|
1356
|
+
'3': 'https://images.sonic-equipment.com/categories/Equipment_.webp',
|
|
1357
|
+
altText: 'Equipment',
|
|
1358
|
+
},
|
|
1359
|
+
items: [
|
|
1360
|
+
{
|
|
1361
|
+
href: '/Catalog/equipment/spring-compressors',
|
|
1362
|
+
image: null,
|
|
1363
|
+
key: '51e0b866-4c64-46e5-9227-b2f400d734ef',
|
|
1364
|
+
label: 'Spring compressors',
|
|
1365
|
+
openInNewTab: false,
|
|
1366
|
+
type: 'link',
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
href: '/Catalog/equipment/lights',
|
|
1370
|
+
image: null,
|
|
1371
|
+
key: '084651dd-b5c6-4b1b-b0b9-b2f400d734f6',
|
|
1372
|
+
label: 'Lights',
|
|
1373
|
+
openInNewTab: false,
|
|
1374
|
+
type: 'link',
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
href: '/Catalog/equipment/boosters',
|
|
1378
|
+
image: null,
|
|
1379
|
+
items: [
|
|
1380
|
+
{
|
|
1381
|
+
href: '/Catalog/equipment/boosters/boosters',
|
|
1382
|
+
image: null,
|
|
1383
|
+
key: '41538627-2761-4be8-9eab-b2f400d7350d',
|
|
1384
|
+
label: 'Boosters',
|
|
1385
|
+
openInNewTab: false,
|
|
1386
|
+
type: 'link',
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
href: '/Catalog/equipment/boosters/booster-spare-parts',
|
|
1390
|
+
image: null,
|
|
1391
|
+
key: 'd950f9ff-ae7f-494c-b5d7-b2f400d73539',
|
|
1392
|
+
label: 'Booster spare parts',
|
|
1393
|
+
openInNewTab: false,
|
|
1394
|
+
type: 'link',
|
|
1395
|
+
},
|
|
1396
|
+
],
|
|
1397
|
+
key: 'd56d0393-d2d8-4919-8d95-b2f400d73507',
|
|
1398
|
+
label: 'Boosters',
|
|
1399
|
+
openInNewTab: false,
|
|
1400
|
+
type: 'link-group',
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
href: '/Catalog/equipment/assortments',
|
|
1404
|
+
image: null,
|
|
1405
|
+
key: 'ab571b80-ca61-4ab8-8750-b2f400d7351c',
|
|
1406
|
+
label: 'Assortments',
|
|
1407
|
+
openInNewTab: false,
|
|
1408
|
+
type: 'link',
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
href: '/Catalog/equipment/jacks',
|
|
1412
|
+
image: null,
|
|
1413
|
+
items: [
|
|
1414
|
+
{
|
|
1415
|
+
href: '/Catalog/equipment/jacks/bottle-jacks',
|
|
1416
|
+
image: null,
|
|
1417
|
+
key: '22ce2de3-4b27-4697-bdb7-b2f400d74048',
|
|
1418
|
+
label: 'Bottle jacks',
|
|
1419
|
+
openInNewTab: false,
|
|
1420
|
+
type: 'link',
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
href: '/Catalog/equipment/jacks/garage-jacks',
|
|
1424
|
+
image: null,
|
|
1425
|
+
key: 'ed6f4cb7-9ec4-43bf-b26d-b2f400d74059',
|
|
1426
|
+
label: 'Garage jacks',
|
|
1427
|
+
openInNewTab: false,
|
|
1428
|
+
type: 'link',
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
href: '/Catalog/equipment/jacks/spare-parts',
|
|
1432
|
+
image: null,
|
|
1433
|
+
key: 'a70bc483-79e6-4408-aa3e-b2f400d7407b',
|
|
1434
|
+
label: 'Spare parts',
|
|
1435
|
+
openInNewTab: false,
|
|
1436
|
+
type: 'link',
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
href: '/Catalog/equipment/jacks/foldable-engine-crane',
|
|
1440
|
+
image: null,
|
|
1441
|
+
key: '36babf86-6d30-4842-868e-b2f400d74786',
|
|
1442
|
+
label: 'Foldable engine crane',
|
|
1443
|
+
openInNewTab: false,
|
|
1444
|
+
type: 'link',
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
href: '/Catalog/equipment/jacks/jack-stands',
|
|
1448
|
+
image: null,
|
|
1449
|
+
key: 'c9271dba-20be-436f-a86b-b2f400d74798',
|
|
1450
|
+
label: 'Jack stands',
|
|
1451
|
+
openInNewTab: false,
|
|
1452
|
+
type: 'link',
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
href: '/Catalog/equipment/jacks/transmission-jacks',
|
|
1456
|
+
image: null,
|
|
1457
|
+
key: '2318d5e7-3f1c-4344-9e49-b2f400d747ab',
|
|
1458
|
+
label: 'Transmission jacks',
|
|
1459
|
+
openInNewTab: false,
|
|
1460
|
+
type: 'link',
|
|
1461
|
+
},
|
|
1462
|
+
],
|
|
1463
|
+
key: 'edf84f16-eda7-40aa-b0f2-b2f400d74043',
|
|
1464
|
+
label: 'Jacks',
|
|
1465
|
+
openInNewTab: false,
|
|
1466
|
+
type: 'link-group',
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
href: '/Catalog/equipment/endoscopes',
|
|
1470
|
+
image: null,
|
|
1471
|
+
key: '7051bf60-56c3-4cb9-abfb-b2f400d74766',
|
|
1472
|
+
label: 'Endoscopes',
|
|
1473
|
+
openInNewTab: false,
|
|
1474
|
+
type: 'link',
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
href: '/Catalog/equipment/reels',
|
|
1478
|
+
image: null,
|
|
1479
|
+
key: 'adfc6952-9f08-4b69-9581-b2f400d747bd',
|
|
1480
|
+
label: 'Reels',
|
|
1481
|
+
openInNewTab: false,
|
|
1482
|
+
type: 'link',
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
href: '/Catalog/equipment/heat-guns',
|
|
1486
|
+
image: null,
|
|
1487
|
+
key: 'ef123661-df50-4e4a-9b6b-b2f400d747d0',
|
|
1488
|
+
label: 'Heat guns',
|
|
1489
|
+
openInNewTab: false,
|
|
1490
|
+
type: 'link',
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
href: '/Catalog/equipment/multimeters',
|
|
1494
|
+
image: null,
|
|
1495
|
+
key: '77538dfa-fbfa-4574-8e83-b2f400d747e4',
|
|
1496
|
+
label: 'Multimeters',
|
|
1497
|
+
openInNewTab: false,
|
|
1498
|
+
type: 'link',
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
href: '/Catalog/equipment/tyre-carriers',
|
|
1502
|
+
image: null,
|
|
1503
|
+
key: '4e62d282-10dc-4967-a353-b2f400d747f6',
|
|
1504
|
+
label: 'Tyre carriers',
|
|
1505
|
+
openInNewTab: false,
|
|
1506
|
+
type: 'link',
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
href: '/Catalog/equipment/accessories',
|
|
1510
|
+
image: null,
|
|
1511
|
+
key: 'cd53a0eb-f924-4e2d-bff8-b2f400d74809',
|
|
1512
|
+
label: 'Accessories',
|
|
1513
|
+
openInNewTab: false,
|
|
1514
|
+
type: 'link',
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
href: '/Catalog/equipment/new',
|
|
1518
|
+
image: null,
|
|
1519
|
+
key: '6e63d2b4-1c51-4a81-bd42-b2f400d74aed',
|
|
1520
|
+
label: 'New',
|
|
1521
|
+
openInNewTab: false,
|
|
1522
|
+
type: 'link',
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
href: '/Catalog/equipment/on-sale',
|
|
1526
|
+
image: null,
|
|
1527
|
+
key: '98ed1d86-4445-43f8-9497-b2f400d74af3',
|
|
1528
|
+
label: 'On sale',
|
|
1529
|
+
openInNewTab: false,
|
|
1530
|
+
type: 'link',
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
href: '/Catalog/equipment/110419',
|
|
1534
|
+
image: null,
|
|
1535
|
+
key: 'a80d4090-f9a1-4cdc-9c70-b2fb00795ebe',
|
|
1536
|
+
label: '110419',
|
|
1537
|
+
openInNewTab: false,
|
|
1538
|
+
type: 'link',
|
|
1539
|
+
},
|
|
1540
|
+
],
|
|
1541
|
+
key: '34adad97-e878-4cec-a1f4-b2f400d734e7',
|
|
1542
|
+
label: 'Equipment',
|
|
1543
|
+
openInNewTab: false,
|
|
1544
|
+
type: 'link-group',
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
href: '/Catalog/next-toolboxes',
|
|
1548
|
+
image: {
|
|
1549
|
+
'1': 'https://images.sonic-equipment.com/categories/NEXT_toolboxes_.webp',
|
|
1550
|
+
'2': 'https://images.sonic-equipment.com/categories/NEXT_toolboxes_.webp',
|
|
1551
|
+
'3': 'https://images.sonic-equipment.com/categories/NEXT_toolboxes_.webp',
|
|
1552
|
+
altText: 'NEXT toolboxes',
|
|
1553
|
+
},
|
|
1554
|
+
items: [
|
|
1555
|
+
{
|
|
1556
|
+
href: '/Catalog/next-toolboxes/originals',
|
|
1557
|
+
image: null,
|
|
1558
|
+
items: [
|
|
1559
|
+
{
|
|
1560
|
+
href: '/Catalog/next-toolboxes/originals/s9',
|
|
1561
|
+
image: null,
|
|
1562
|
+
key: '2114bebe-f724-4b97-b8e4-b2f400d73584',
|
|
1563
|
+
label: 'S9',
|
|
1564
|
+
openInNewTab: false,
|
|
1565
|
+
type: 'link',
|
|
1566
|
+
},
|
|
1567
|
+
{
|
|
1568
|
+
href: '/Catalog/next-toolboxes/originals/s10',
|
|
1569
|
+
image: null,
|
|
1570
|
+
key: '5f259bc2-66f8-49a2-8db9-b2f400d7358c',
|
|
1571
|
+
label: 'S10',
|
|
1572
|
+
openInNewTab: false,
|
|
1573
|
+
type: 'link',
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
href: '/Catalog/next-toolboxes/originals/s11',
|
|
1577
|
+
image: null,
|
|
1578
|
+
key: 'fe6e5a99-5d8a-4857-8eff-b2f400d73592',
|
|
1579
|
+
label: 'S11',
|
|
1580
|
+
openInNewTab: false,
|
|
1581
|
+
type: 'link',
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
href: '/Catalog/next-toolboxes/originals/s12',
|
|
1585
|
+
image: null,
|
|
1586
|
+
key: 'aa23a613-9229-41ea-b1d1-b2f400d7359c',
|
|
1587
|
+
label: 'S12',
|
|
1588
|
+
openInNewTab: false,
|
|
1589
|
+
type: 'link',
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
href: '/Catalog/next-toolboxes/originals/s12xd',
|
|
1593
|
+
image: null,
|
|
1594
|
+
key: '8d3e40cf-a399-468b-bf47-b2f400d735a2',
|
|
1595
|
+
label: 'S12XD',
|
|
1596
|
+
openInNewTab: false,
|
|
1597
|
+
type: 'link',
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
href: '/Catalog/next-toolboxes/originals/s13',
|
|
1601
|
+
image: null,
|
|
1602
|
+
key: '75cb83cd-7ed1-46bd-9ac4-b2f400d735ac',
|
|
1603
|
+
label: 'S13',
|
|
1604
|
+
openInNewTab: false,
|
|
1605
|
+
type: 'link',
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
href: '/Catalog/next-toolboxes/originals/s14',
|
|
1609
|
+
image: null,
|
|
1610
|
+
key: 'd2e14292-6008-4d62-99aa-b2f400d735b3',
|
|
1611
|
+
label: 'S14',
|
|
1612
|
+
openInNewTab: false,
|
|
1613
|
+
type: 'link',
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
href: '/Catalog/next-toolboxes/originals/volkswagen',
|
|
1617
|
+
image: null,
|
|
1618
|
+
key: '6e0a2157-cb60-42c8-8ebf-b2f400d735c1',
|
|
1619
|
+
label: 'Volkswagen',
|
|
1620
|
+
openInNewTab: false,
|
|
1621
|
+
type: 'link',
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
href: '/Catalog/next-toolboxes/originals/originals-spare-parts',
|
|
1625
|
+
image: null,
|
|
1626
|
+
key: 'df8bc94b-0bee-4038-aadc-b2f400d735cb',
|
|
1627
|
+
label: 'Originals spare parts',
|
|
1628
|
+
openInNewTab: false,
|
|
1629
|
+
type: 'link',
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
href: '/Catalog/next-toolboxes/originals/sws',
|
|
1633
|
+
image: null,
|
|
1634
|
+
key: '487f9bf5-662c-4be4-af33-b2f400d7365a',
|
|
1635
|
+
label: 'SWS',
|
|
1636
|
+
openInNewTab: false,
|
|
1637
|
+
type: 'link',
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
href: '/Catalog/next-toolboxes/originals/service-carts',
|
|
1641
|
+
image: null,
|
|
1642
|
+
key: '7b613bbc-f040-4c5b-b17f-b2f400d7473b',
|
|
1643
|
+
label: 'Service carts',
|
|
1644
|
+
openInNewTab: false,
|
|
1645
|
+
type: 'link',
|
|
1646
|
+
},
|
|
1647
|
+
],
|
|
1648
|
+
key: 'ebbcf33c-faca-42f8-8495-b2f400d7356c',
|
|
1649
|
+
label: 'Originals',
|
|
1650
|
+
openInNewTab: false,
|
|
1651
|
+
type: 'link-group',
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
href: '/Catalog/next-toolboxes/next-s7',
|
|
1655
|
+
image: null,
|
|
1656
|
+
key: '63072234-1212-4b59-9a93-b2f400d7461b',
|
|
1657
|
+
label: 'NEXT S7',
|
|
1658
|
+
openInNewTab: false,
|
|
1659
|
+
type: 'link',
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
href: '/Catalog/next-toolboxes/next-s8',
|
|
1663
|
+
image: null,
|
|
1664
|
+
key: '1f9f65d9-f1d3-4836-919c-b2f400d7462c',
|
|
1665
|
+
label: 'NEXT S8',
|
|
1666
|
+
openInNewTab: false,
|
|
1667
|
+
type: 'link',
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
href: '/Catalog/next-toolboxes/next-s9',
|
|
1671
|
+
image: null,
|
|
1672
|
+
key: 'abdbaed0-a929-42dd-8741-b2f400d7463d',
|
|
1673
|
+
label: 'NEXT S9',
|
|
1674
|
+
openInNewTab: false,
|
|
1675
|
+
type: 'link',
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
href: '/Catalog/next-toolboxes/next-s12',
|
|
1679
|
+
image: null,
|
|
1680
|
+
key: '209d2f3f-1e52-47b3-bbed-b2f400d7464e',
|
|
1681
|
+
label: 'NEXT S12',
|
|
1682
|
+
openInNewTab: false,
|
|
1683
|
+
type: 'link',
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
href: '/Catalog/next-toolboxes/next-s12xd',
|
|
1687
|
+
image: null,
|
|
1688
|
+
key: '67230b99-1b43-4abf-a95d-b2f400d74661',
|
|
1689
|
+
label: 'NEXT S12XD',
|
|
1690
|
+
openInNewTab: false,
|
|
1691
|
+
type: 'link',
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
href: '/Catalog/next-toolboxes/next-s13',
|
|
1695
|
+
image: null,
|
|
1696
|
+
key: '5dd6df41-e5c8-43a3-ac47-b2f400d74672',
|
|
1697
|
+
label: 'NEXT S13',
|
|
1698
|
+
openInNewTab: false,
|
|
1699
|
+
type: 'link',
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
href: '/Catalog/next-toolboxes/next-s14',
|
|
1703
|
+
image: null,
|
|
1704
|
+
key: 'a178bea2-f87a-461f-9b63-b2f400d74684',
|
|
1705
|
+
label: 'NEXT S14',
|
|
1706
|
+
openInNewTab: false,
|
|
1707
|
+
type: 'link',
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
href: '/Catalog/next-toolboxes/next-s15',
|
|
1711
|
+
image: null,
|
|
1712
|
+
key: '79410704-8ab5-477f-bea5-b2f400d74695',
|
|
1713
|
+
label: 'NEXT S15',
|
|
1714
|
+
openInNewTab: false,
|
|
1715
|
+
type: 'link',
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
href: '/Catalog/next-toolboxes/next-spare-parts',
|
|
1719
|
+
image: null,
|
|
1720
|
+
key: '47ab3cdb-4cbc-4217-9815-b2f400d746a6',
|
|
1721
|
+
label: 'NEXT spare parts',
|
|
1722
|
+
openInNewTab: false,
|
|
1723
|
+
type: 'link',
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
href: '/Catalog/next-toolboxes/next-service-carts',
|
|
1727
|
+
image: null,
|
|
1728
|
+
items: [
|
|
1729
|
+
{
|
|
1730
|
+
href: '/Catalog/next-toolboxes/next-service-carts/next-s1',
|
|
1731
|
+
image: null,
|
|
1732
|
+
key: '81ec8337-f945-444e-8649-b2f400d746e8',
|
|
1733
|
+
label: 'NEXT S1',
|
|
1734
|
+
openInNewTab: false,
|
|
1735
|
+
type: 'link',
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
href: '/Catalog/next-toolboxes/next-service-carts/next-s2',
|
|
1739
|
+
image: null,
|
|
1740
|
+
key: '74722f75-da45-4106-8c58-b2f400d746f9',
|
|
1741
|
+
label: 'NEXT S2',
|
|
1742
|
+
openInNewTab: false,
|
|
1743
|
+
type: 'link',
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
href: '/Catalog/next-toolboxes/next-service-carts/next-s3',
|
|
1747
|
+
image: null,
|
|
1748
|
+
key: 'f4d55d2b-825b-4f93-997e-b2f400d7470b',
|
|
1749
|
+
label: 'NEXT S3',
|
|
1750
|
+
openInNewTab: false,
|
|
1751
|
+
type: 'link',
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
href: '/Catalog/next-toolboxes/next-service-carts/next-s4',
|
|
1755
|
+
image: null,
|
|
1756
|
+
key: 'c3af702d-bef4-448e-9df3-b2f400d7471c',
|
|
1757
|
+
label: 'NEXT S4',
|
|
1758
|
+
openInNewTab: false,
|
|
1759
|
+
type: 'link',
|
|
1760
|
+
},
|
|
1761
|
+
],
|
|
1762
|
+
key: '283eeb25-a972-4957-84a1-b2f400d746d5',
|
|
1763
|
+
label: 'NEXT service carts',
|
|
1764
|
+
openInNewTab: false,
|
|
1765
|
+
type: 'link-group',
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
href: '/Catalog/next-toolboxes/new',
|
|
1769
|
+
image: null,
|
|
1770
|
+
key: '4d1ad864-d786-45a6-acf8-b2f400d74ae1',
|
|
1771
|
+
label: 'New',
|
|
1772
|
+
openInNewTab: false,
|
|
1773
|
+
type: 'link',
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
href: '/Catalog/next-toolboxes/on-sale',
|
|
1777
|
+
image: null,
|
|
1778
|
+
key: '1ea53369-144e-4a9e-a628-b2f400d74ae7',
|
|
1779
|
+
label: 'On sale',
|
|
1780
|
+
openInNewTab: false,
|
|
1781
|
+
type: 'link',
|
|
1782
|
+
},
|
|
1783
|
+
],
|
|
1784
|
+
key: 'ac256131-175f-4006-8618-b2f400d73568',
|
|
1785
|
+
label: 'NEXT toolboxes',
|
|
1786
|
+
openInNewTab: false,
|
|
1787
|
+
type: 'link-group',
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
href: '/Catalog/storage-solutions',
|
|
1791
|
+
image: {
|
|
1792
|
+
'1': 'https://images.sonic-equipment.com/categories/Storage_solutions_.webp',
|
|
1793
|
+
'2': 'https://images.sonic-equipment.com/categories/Storage_solutions_.webp',
|
|
1794
|
+
'3': 'https://images.sonic-equipment.com/categories/Storage_solutions_.webp',
|
|
1795
|
+
altText: 'Storage solutions',
|
|
1796
|
+
},
|
|
1797
|
+
items: [
|
|
1798
|
+
{
|
|
1799
|
+
href: '/Catalog/storage-solutions/mss',
|
|
1800
|
+
image: null,
|
|
1801
|
+
items: [
|
|
1802
|
+
{
|
|
1803
|
+
href: '/Catalog/storage-solutions/mss/mss-setups',
|
|
1804
|
+
image: null,
|
|
1805
|
+
key: 'ffc8577b-391c-408e-835c-b2f400d735e1',
|
|
1806
|
+
label: 'MSS setups',
|
|
1807
|
+
openInNewTab: false,
|
|
1808
|
+
type: 'link',
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
href: '/Catalog/storage-solutions/mss/mss-accessories',
|
|
1812
|
+
image: null,
|
|
1813
|
+
key: '2f25060d-b270-4d87-b66d-b2f400d740ad',
|
|
1814
|
+
label: 'MSS accessories',
|
|
1815
|
+
openInNewTab: false,
|
|
1816
|
+
type: 'link',
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
href: '/Catalog/storage-solutions/mss/mss-modules',
|
|
1820
|
+
image: null,
|
|
1821
|
+
items: [
|
|
1822
|
+
{
|
|
1823
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-back-panels',
|
|
1824
|
+
image: null,
|
|
1825
|
+
key: '7a369302-1d59-4227-bded-b2f400d7489b',
|
|
1826
|
+
label: 'MSS back panels',
|
|
1827
|
+
openInNewTab: false,
|
|
1828
|
+
type: 'link',
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-drawer-cabinets',
|
|
1832
|
+
image: null,
|
|
1833
|
+
key: 'fec81f6f-6a06-497f-bba9-b2f400d748af',
|
|
1834
|
+
label: 'MSS drawer cabinets',
|
|
1835
|
+
openInNewTab: false,
|
|
1836
|
+
type: 'link',
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-portable-cabinets',
|
|
1840
|
+
image: null,
|
|
1841
|
+
key: '579b1c08-2890-4310-9c19-b2f400d748c1',
|
|
1842
|
+
label: 'MSS portable cabinets',
|
|
1843
|
+
openInNewTab: false,
|
|
1844
|
+
type: 'link',
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-posts',
|
|
1848
|
+
image: null,
|
|
1849
|
+
key: '5bee4232-fe41-40fc-9147-b2f400d748d3',
|
|
1850
|
+
label: 'MSS posts',
|
|
1851
|
+
openInNewTab: false,
|
|
1852
|
+
type: 'link',
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-reel-cabinets',
|
|
1856
|
+
image: null,
|
|
1857
|
+
key: '0ef83dc1-8fd0-4bf4-9ec9-b2f400d748ea',
|
|
1858
|
+
label: 'MSS reel cabinets',
|
|
1859
|
+
openInNewTab: false,
|
|
1860
|
+
type: 'link',
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-storage-cabinets',
|
|
1864
|
+
image: null,
|
|
1865
|
+
key: '1a9cde89-32c7-4da6-a1bd-b2f400d748fe',
|
|
1866
|
+
label: 'MSS storage cabinets',
|
|
1867
|
+
openInNewTab: false,
|
|
1868
|
+
type: 'link',
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-wall-cabinets',
|
|
1872
|
+
image: null,
|
|
1873
|
+
key: '03cfbbaa-ccd0-4f7c-9712-b2f400d74911',
|
|
1874
|
+
label: 'MSS wall cabinets',
|
|
1875
|
+
openInNewTab: false,
|
|
1876
|
+
type: 'link',
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-waste-cabinets',
|
|
1880
|
+
image: null,
|
|
1881
|
+
key: '5b1828b5-69c3-4332-800e-b2f400d74925',
|
|
1882
|
+
label: 'MSS waste cabinets',
|
|
1883
|
+
openInNewTab: false,
|
|
1884
|
+
type: 'link',
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
href: '/Catalog/storage-solutions/mss/mss-modules/mss-worktops',
|
|
1888
|
+
image: null,
|
|
1889
|
+
key: '3070742b-f172-4fdd-ad3a-b2f400d74939',
|
|
1890
|
+
label: 'MSS worktops',
|
|
1891
|
+
openInNewTab: false,
|
|
1892
|
+
type: 'link',
|
|
1893
|
+
},
|
|
1894
|
+
],
|
|
1895
|
+
key: 'd4628880-0965-4d04-b219-b2f400d74889',
|
|
1896
|
+
label: 'MSS modules',
|
|
1897
|
+
openInNewTab: false,
|
|
1898
|
+
type: 'link-group',
|
|
1899
|
+
},
|
|
1900
|
+
],
|
|
1901
|
+
key: '49ee7f8e-1eb9-4e5b-9768-b2f400d735d9',
|
|
1902
|
+
label: 'MSS',
|
|
1903
|
+
openInNewTab: false,
|
|
1904
|
+
type: 'link-group',
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
href: '/Catalog/storage-solutions/mws',
|
|
1908
|
+
image: null,
|
|
1909
|
+
key: '041741ad-f7ae-49d2-b4be-b2f400d735e7',
|
|
1910
|
+
label: 'MWS',
|
|
1911
|
+
openInNewTab: false,
|
|
1912
|
+
type: 'link',
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
href: '/Catalog/storage-solutions/mss-plus',
|
|
1916
|
+
image: null,
|
|
1917
|
+
items: [
|
|
1918
|
+
{
|
|
1919
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-accessories',
|
|
1920
|
+
image: null,
|
|
1921
|
+
key: '6e0e5709-fa04-49e7-a1de-b2f400d740f0',
|
|
1922
|
+
label: 'MSS+ accessories',
|
|
1923
|
+
openInNewTab: false,
|
|
1924
|
+
type: 'link',
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-setups',
|
|
1928
|
+
image: null,
|
|
1929
|
+
key: '470b23b9-2152-42fa-a822-b2f400d740f4',
|
|
1930
|
+
label: 'MSS+ setups',
|
|
1931
|
+
openInNewTab: false,
|
|
1932
|
+
type: 'link',
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules',
|
|
1936
|
+
image: null,
|
|
1937
|
+
items: [
|
|
1938
|
+
{
|
|
1939
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-back-panels',
|
|
1940
|
+
image: null,
|
|
1941
|
+
key: '0f3323db-e1a0-43b2-a3f0-b2f400d74103',
|
|
1942
|
+
label: 'MSS+ back panels',
|
|
1943
|
+
openInNewTab: false,
|
|
1944
|
+
type: 'link',
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-bridge-units',
|
|
1948
|
+
image: null,
|
|
1949
|
+
key: '95e014a8-3d98-4997-a73e-b2f400d74108',
|
|
1950
|
+
label: 'MSS+ bridge units',
|
|
1951
|
+
openInNewTab: false,
|
|
1952
|
+
type: 'link',
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-drawer-cabinets',
|
|
1956
|
+
image: null,
|
|
1957
|
+
key: '3ae7a545-d6f7-4ac2-b360-b2f400d74114',
|
|
1958
|
+
label: 'MSS+ drawer cabinets',
|
|
1959
|
+
openInNewTab: false,
|
|
1960
|
+
type: 'link',
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-lift-and-power-cabinets',
|
|
1964
|
+
image: null,
|
|
1965
|
+
key: '9d2ebd28-47dd-4e57-9060-b2f400d7411a',
|
|
1966
|
+
label: 'MSS+ lift and power cabinets',
|
|
1967
|
+
openInNewTab: false,
|
|
1968
|
+
type: 'link',
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-portable-cabinets',
|
|
1972
|
+
image: null,
|
|
1973
|
+
key: '44b4f132-6248-4873-b267-b2f400d7411e',
|
|
1974
|
+
label: 'MSS+ Portable cabinets',
|
|
1975
|
+
openInNewTab: false,
|
|
1976
|
+
type: 'link',
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-posts',
|
|
1980
|
+
image: null,
|
|
1981
|
+
key: '27a0713a-d6fc-4c81-92aa-b2f400d74124',
|
|
1982
|
+
label: 'MSS+ Posts',
|
|
1983
|
+
openInNewTab: false,
|
|
1984
|
+
type: 'link',
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-reel-cabinets',
|
|
1988
|
+
image: null,
|
|
1989
|
+
key: '908a4764-5c91-449d-a022-b2f400d74129',
|
|
1990
|
+
label: 'MSS+ Reel cabinets',
|
|
1991
|
+
openInNewTab: false,
|
|
1992
|
+
type: 'link',
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-storage-cabinets',
|
|
1996
|
+
image: null,
|
|
1997
|
+
key: 'f42f937a-ddb8-4ba0-9e3e-b2f400d745c0',
|
|
1998
|
+
label: 'MSS+ Storage cabinets',
|
|
1999
|
+
openInNewTab: false,
|
|
2000
|
+
type: 'link',
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-wall-cabinets',
|
|
2004
|
+
image: null,
|
|
2005
|
+
key: '24f54cdb-5aa8-4981-a03e-b2f400d745d3',
|
|
2006
|
+
label: 'MSS+ Wall cabinets',
|
|
2007
|
+
openInNewTab: false,
|
|
2008
|
+
type: 'link',
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-waste-cabinets',
|
|
2012
|
+
image: null,
|
|
2013
|
+
key: '5e6d66ff-0725-4093-96a3-b2f400d74856',
|
|
2014
|
+
label: 'MSS+ Waste Cabinets',
|
|
2015
|
+
openInNewTab: false,
|
|
2016
|
+
type: 'link',
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
href: '/Catalog/storage-solutions/mss-plus/mss-plus-modules/mss-plus-worktops',
|
|
2020
|
+
image: null,
|
|
2021
|
+
key: 'bddf1640-fac5-40cb-bb29-b2f400d74869',
|
|
2022
|
+
label: 'MSS+ Worktops',
|
|
2023
|
+
openInNewTab: false,
|
|
2024
|
+
type: 'link',
|
|
2025
|
+
},
|
|
2026
|
+
],
|
|
2027
|
+
key: '5ac1a289-4355-4c7a-9fc9-b2f400d740ff',
|
|
2028
|
+
label: 'MSS+ modules',
|
|
2029
|
+
openInNewTab: false,
|
|
2030
|
+
type: 'link-group',
|
|
2031
|
+
},
|
|
2032
|
+
],
|
|
2033
|
+
key: 'ea5ff5c6-e2b1-4587-aa49-b2f400d740ea',
|
|
2034
|
+
label: 'MSS+',
|
|
2035
|
+
openInNewTab: false,
|
|
2036
|
+
type: 'link-group',
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
href: '/Catalog/storage-solutions/new',
|
|
2040
|
+
image: null,
|
|
2041
|
+
key: '013e5802-a0a4-45e0-9b1a-b2f400d74b03',
|
|
2042
|
+
label: 'New',
|
|
2043
|
+
openInNewTab: false,
|
|
2044
|
+
type: 'link',
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
href: '/Catalog/storage-solutions/on-sale',
|
|
2048
|
+
image: null,
|
|
2049
|
+
key: 'aacdc3ef-fcef-42d4-b3d5-b2f400d74b08',
|
|
2050
|
+
label: 'On Sale',
|
|
2051
|
+
openInNewTab: false,
|
|
2052
|
+
type: 'link',
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
href: '/Catalog/storage-solutions/spare-parts',
|
|
2056
|
+
image: null,
|
|
2057
|
+
items: [
|
|
2058
|
+
{
|
|
2059
|
+
href: '/Catalog/storage-solutions/spare-parts/mss',
|
|
2060
|
+
image: null,
|
|
2061
|
+
key: '3f54f9c5-ce62-4e02-9a9b-b2f400d74b2f',
|
|
2062
|
+
label: 'MSS',
|
|
2063
|
+
openInNewTab: false,
|
|
2064
|
+
type: 'link',
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
href: '/Catalog/storage-solutions/spare-parts/mss-plus',
|
|
2068
|
+
image: null,
|
|
2069
|
+
key: '49a71e50-3451-487c-ba7b-b2f400d74b34',
|
|
2070
|
+
label: 'MSS+',
|
|
2071
|
+
openInNewTab: false,
|
|
2072
|
+
type: 'link',
|
|
2073
|
+
},
|
|
2074
|
+
],
|
|
2075
|
+
key: 'bdbafe53-3bd1-48ce-8d8e-b2f400d74b2a',
|
|
2076
|
+
label: 'Spare parts',
|
|
2077
|
+
openInNewTab: false,
|
|
2078
|
+
type: 'link-group',
|
|
2079
|
+
},
|
|
2080
|
+
],
|
|
2081
|
+
key: 'c2c24409-7eea-49da-b333-b2f400d735cf',
|
|
2082
|
+
label: 'Storage solutions',
|
|
2083
|
+
openInNewTab: false,
|
|
2084
|
+
type: 'link-group',
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
href: '/Catalog/sonic-foam-system',
|
|
2088
|
+
image: {
|
|
2089
|
+
'1': 'https://images.sonic-equipment.com/categories/Sonic_Foam_System_.webp',
|
|
2090
|
+
'2': 'https://images.sonic-equipment.com/categories/Sonic_Foam_System_.webp',
|
|
2091
|
+
'3': 'https://images.sonic-equipment.com/categories/Sonic_Foam_System_.webp',
|
|
2092
|
+
altText: 'Sonic Foam System',
|
|
2093
|
+
},
|
|
2094
|
+
items: [
|
|
2095
|
+
{
|
|
2096
|
+
href: '/Catalog/sonic-foam-system/sfs-extra-small',
|
|
2097
|
+
image: null,
|
|
2098
|
+
key: '73c6442d-5d46-47af-9407-b2f400d735f6',
|
|
2099
|
+
label: 'SFS extra small',
|
|
2100
|
+
openInNewTab: false,
|
|
2101
|
+
type: 'link',
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
href: '/Catalog/sonic-foam-system/sfs-small',
|
|
2105
|
+
image: null,
|
|
2106
|
+
key: '635bebcc-6d85-4653-8e77-b2f400d73600',
|
|
2107
|
+
label: 'SFS small',
|
|
2108
|
+
openInNewTab: false,
|
|
2109
|
+
type: 'link',
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
href: '/Catalog/sonic-foam-system/sfs-medium',
|
|
2113
|
+
image: null,
|
|
2114
|
+
key: 'faad60c3-df39-42e5-8b7d-b2f400d73605',
|
|
2115
|
+
label: 'SFS medium',
|
|
2116
|
+
openInNewTab: false,
|
|
2117
|
+
type: 'link',
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
href: '/Catalog/sonic-foam-system/sfs-large',
|
|
2121
|
+
image: null,
|
|
2122
|
+
key: '3b821a59-3371-4504-bcd5-b2f400d7360f',
|
|
2123
|
+
label: 'SFS large',
|
|
2124
|
+
openInNewTab: false,
|
|
2125
|
+
type: 'link',
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
href: '/Catalog/sonic-foam-system/sfs-extra-large',
|
|
2129
|
+
image: null,
|
|
2130
|
+
key: '594ce3cb-5c70-4b90-bfff-b2f400d7361a',
|
|
2131
|
+
label: 'SFS extra large',
|
|
2132
|
+
openInNewTab: false,
|
|
2133
|
+
type: 'link',
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
href: '/Catalog/sonic-foam-system/volkswagen',
|
|
2137
|
+
image: null,
|
|
2138
|
+
key: '53fbaf55-cd80-4278-8748-b2f400d73624',
|
|
2139
|
+
label: 'Volkswagen',
|
|
2140
|
+
openInNewTab: false,
|
|
2141
|
+
type: 'link',
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
href: '/Catalog/sonic-foam-system/new',
|
|
2145
|
+
image: null,
|
|
2146
|
+
key: '07dd4a06-d60e-42b2-b5be-b2f400d74afa',
|
|
2147
|
+
label: 'New',
|
|
2148
|
+
openInNewTab: false,
|
|
2149
|
+
type: 'link',
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
href: '/Catalog/sonic-foam-system/on-sale',
|
|
2153
|
+
image: null,
|
|
2154
|
+
key: '60357d97-af31-4007-84d3-b2f400d74aff',
|
|
2155
|
+
label: 'On sale',
|
|
2156
|
+
openInNewTab: false,
|
|
2157
|
+
type: 'link',
|
|
2158
|
+
},
|
|
2159
|
+
],
|
|
2160
|
+
key: '0147198e-2fd1-4bae-be86-b2f400d735f0',
|
|
2161
|
+
label: 'Sonic Foam System',
|
|
2162
|
+
openInNewTab: false,
|
|
2163
|
+
type: 'link-group',
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
href: '/Catalog/merchandising',
|
|
2167
|
+
image: {
|
|
2168
|
+
'1': 'https://images.sonic-equipment.com/categories/Merchandising_.webp',
|
|
2169
|
+
'2': 'https://images.sonic-equipment.com/categories/Merchandising_.webp',
|
|
2170
|
+
'3': 'https://images.sonic-equipment.com/categories/Merchandising_.webp',
|
|
2171
|
+
altText: 'Merchandising',
|
|
2172
|
+
},
|
|
2173
|
+
items: [
|
|
2174
|
+
{
|
|
2175
|
+
href: '/Catalog/merchandising/displays',
|
|
2176
|
+
image: null,
|
|
2177
|
+
key: '867d3871-57a9-4a19-8b1e-b2f400d73ee4',
|
|
2178
|
+
label: 'Displays',
|
|
2179
|
+
openInNewTab: false,
|
|
2180
|
+
type: 'link',
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
href: '/Catalog/merchandising/flyers',
|
|
2184
|
+
image: null,
|
|
2185
|
+
key: 'cf9c129c-b58e-4c73-8aa6-b2f400d73ef3',
|
|
2186
|
+
label: 'Flyers',
|
|
2187
|
+
openInNewTab: false,
|
|
2188
|
+
type: 'link',
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
href: '/Catalog/merchandising/clothing',
|
|
2192
|
+
image: null,
|
|
2193
|
+
key: '68f83448-3822-4232-9b79-b2f400d7408c',
|
|
2194
|
+
label: 'Clothing',
|
|
2195
|
+
openInNewTab: false,
|
|
2196
|
+
type: 'link',
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
href: '/Catalog/merchandising/event-materials',
|
|
2200
|
+
image: null,
|
|
2201
|
+
key: '0d2c09d6-6e5d-4afc-bee1-b2f400d740a3',
|
|
2202
|
+
label: 'Event materials',
|
|
2203
|
+
openInNewTab: false,
|
|
2204
|
+
type: 'link',
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
href: '/Catalog/merchandising/gadgets',
|
|
2208
|
+
image: null,
|
|
2209
|
+
key: 'e53ae74d-eed5-40a0-bb08-b2f400d740a7',
|
|
2210
|
+
label: 'Gadgets',
|
|
2211
|
+
openInNewTab: false,
|
|
2212
|
+
type: 'link',
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
href: '/Catalog/merchandising/new',
|
|
2216
|
+
image: null,
|
|
2217
|
+
key: 'fa86681d-88fa-4db6-82c0-b2fa01808521',
|
|
2218
|
+
label: 'New',
|
|
2219
|
+
openInNewTab: false,
|
|
2220
|
+
type: 'link',
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
href: '/Catalog/merchandising/on-sale',
|
|
2224
|
+
image: null,
|
|
2225
|
+
key: 'e80a9834-84ad-4ef8-a9d5-b2fa0180855f',
|
|
2226
|
+
label: 'On sale',
|
|
2227
|
+
openInNewTab: false,
|
|
2228
|
+
type: 'link',
|
|
2229
|
+
},
|
|
2230
|
+
],
|
|
2231
|
+
key: '66afb127-9f80-4897-997e-b2f400d73ee0',
|
|
2232
|
+
label: 'Merchandising',
|
|
2233
|
+
openInNewTab: false,
|
|
2234
|
+
type: 'link-group',
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
href: '/Catalog/new-products',
|
|
2238
|
+
image: {
|
|
2239
|
+
'1': 'https://images.sonic-equipment.com/categories/New_products_.webp',
|
|
2240
|
+
'2': 'https://images.sonic-equipment.com/categories/New_products_.webp',
|
|
2241
|
+
'3': 'https://images.sonic-equipment.com/categories/New_products_.webp',
|
|
2242
|
+
altText: 'New products',
|
|
2243
|
+
},
|
|
2244
|
+
key: '3937ad82-664a-4840-ab16-b2f400d74ad6',
|
|
2245
|
+
label: 'New products',
|
|
2246
|
+
openInNewTab: false,
|
|
2247
|
+
type: 'link',
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
href: '/Catalog/products-on-sale',
|
|
2251
|
+
image: {
|
|
2252
|
+
'1': 'https://images.sonic-equipment.com/categories/Products_on_sale_.webp',
|
|
2253
|
+
'2': 'https://images.sonic-equipment.com/categories/Products_on_sale_.webp',
|
|
2254
|
+
'3': 'https://images.sonic-equipment.com/categories/Products_on_sale_.webp',
|
|
2255
|
+
altText: 'Products on sale',
|
|
2256
|
+
},
|
|
2257
|
+
key: '26182a64-e864-4125-8b70-b2f400d74adb',
|
|
2258
|
+
label: 'Products on sale',
|
|
2259
|
+
openInNewTab: false,
|
|
2260
|
+
type: 'link',
|
|
2261
|
+
},
|
|
2262
|
+
],
|
|
2263
|
+
key: '473b0b5c-f9ae-4bf2-9d16-aef9d6bc353a',
|
|
2264
|
+
label: 'Products',
|
|
2265
|
+
openInNewTab: false,
|
|
2266
|
+
type: 'link-group',
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
href: 'https://accept-sonic-equipment.com/client-cases',
|
|
2270
|
+
image: null,
|
|
2271
|
+
key: 'df0f2d0f-eeae-4ef8-abaa-37eda2081e98',
|
|
2272
|
+
label: 'Client Cases',
|
|
2273
|
+
openInNewTab: false,
|
|
2274
|
+
type: 'link',
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
href: null,
|
|
2278
|
+
image: null,
|
|
2279
|
+
items: [
|
|
2280
|
+
{
|
|
2281
|
+
href: 'https://accept-sonic-equipment.com/contact-us/',
|
|
2282
|
+
image: null,
|
|
2283
|
+
key: '6a2b0523-1f3e-4553-bfe9-270fd04fa804',
|
|
2284
|
+
label: 'Contact',
|
|
2285
|
+
openInNewTab: false,
|
|
2286
|
+
type: 'link',
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
href: 'https://accept-sonic-equipment.com/faq/',
|
|
2290
|
+
image: null,
|
|
2291
|
+
key: '38cec679-94f9-4f9c-8881-1d8f0cb764c7',
|
|
2292
|
+
label: 'FAQ',
|
|
2293
|
+
openInNewTab: false,
|
|
2294
|
+
type: 'link',
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
href: 'https://www.sonic-equipment.com/sonic-configurator/',
|
|
2298
|
+
image: null,
|
|
2299
|
+
key: 'd7b0cd50-1edf-4537-8949-bb2ea7f3e3e5',
|
|
2300
|
+
label: 'Sonic Configurator',
|
|
2301
|
+
openInNewTab: false,
|
|
2302
|
+
type: 'link',
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
href: 'https://accept-sonic-equipment.com/timing-tools/',
|
|
2306
|
+
image: null,
|
|
2307
|
+
key: '5a92ded3-0a20-4481-bd87-a57747690856',
|
|
2308
|
+
label: 'Timing tools',
|
|
2309
|
+
openInNewTab: false,
|
|
2310
|
+
type: 'link',
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
href: 'https://accept-sonic-equipment.com/catalogues/',
|
|
2314
|
+
image: null,
|
|
2315
|
+
key: '42cf5efd-96f0-4714-bec4-bc268bf35058',
|
|
2316
|
+
label: 'Catalogues',
|
|
2317
|
+
openInNewTab: false,
|
|
2318
|
+
type: 'link',
|
|
2319
|
+
},
|
|
2320
|
+
],
|
|
2321
|
+
key: 'ddbe2166-e9be-4d16-88a1-23c826823bab',
|
|
2322
|
+
label: 'Support',
|
|
2323
|
+
openInNewTab: false,
|
|
2324
|
+
type: 'link-group',
|
|
2325
|
+
},
|
|
2326
|
+
],
|
|
2327
|
+
key: 'main-navigation',
|
|
2328
|
+
type: 'section',
|
|
2329
|
+
},
|
|
2330
|
+
],
|
|
2331
|
+
key: 'header',
|
|
2332
|
+
type: 'section',
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
items: [
|
|
2336
|
+
{
|
|
2337
|
+
items: [
|
|
2338
|
+
{
|
|
2339
|
+
href: null,
|
|
2340
|
+
image: null,
|
|
2341
|
+
items: [
|
|
2342
|
+
{
|
|
2343
|
+
href: 'https://accept-sonic-equipment.com/about-us/',
|
|
2344
|
+
image: null,
|
|
2345
|
+
key: 'a19eff03-ebc0-456e-84d5-84fc40905f36',
|
|
2346
|
+
label: 'About Sonic',
|
|
2347
|
+
openInNewTab: false,
|
|
2348
|
+
type: 'link',
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
href: 'https://accept-sonic-equipment.com/about-us/',
|
|
2352
|
+
image: null,
|
|
2353
|
+
key: '37163707-b271-4914-8b2f-8891e9d247ca',
|
|
2354
|
+
label: 'Work at Sonic',
|
|
2355
|
+
openInNewTab: false,
|
|
2356
|
+
type: 'link',
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
href: 'https://accept-sonic-equipment.com/news/',
|
|
2360
|
+
image: null,
|
|
2361
|
+
key: 'c4af262b-8b28-45a7-8e4e-163293d96c3f',
|
|
2362
|
+
label: 'News',
|
|
2363
|
+
openInNewTab: false,
|
|
2364
|
+
type: 'link',
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
href: 'https://accept-sonic-equipment.com/client-cases/',
|
|
2368
|
+
image: null,
|
|
2369
|
+
key: '41db899f-b866-4fb8-a0a9-24c84e52d5e2',
|
|
2370
|
+
label: 'Client Cases',
|
|
2371
|
+
openInNewTab: false,
|
|
2372
|
+
type: 'link',
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
href: 'https://accept-sonic-equipment.com/media/f0zf1243/code-of-conduct-sonic-en.pdf',
|
|
2376
|
+
image: null,
|
|
2377
|
+
key: '97052064-ba36-41ee-9cc9-9823b5dfe767',
|
|
2378
|
+
label: 'Code of conduct',
|
|
2379
|
+
openInNewTab: false,
|
|
2380
|
+
type: 'link',
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
href: 'https://accept-sonic-equipment.com/esg/',
|
|
2384
|
+
image: null,
|
|
2385
|
+
key: '4f139af2-921b-433e-aabf-dfa95c5a586e',
|
|
2386
|
+
label: 'ESG',
|
|
2387
|
+
openInNewTab: false,
|
|
2388
|
+
type: 'link',
|
|
2389
|
+
},
|
|
2390
|
+
],
|
|
2391
|
+
key: 'c0ae29f9-2c43-483a-b2f8-ef25938a79f2',
|
|
2392
|
+
label: 'Sonic Equipment',
|
|
2393
|
+
openInNewTab: false,
|
|
2394
|
+
type: 'link-group',
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
href: null,
|
|
2398
|
+
image: null,
|
|
2399
|
+
items: [
|
|
2400
|
+
{
|
|
2401
|
+
href: 'https://accept-sonic-equipment.com/toolboxes/',
|
|
2402
|
+
image: null,
|
|
2403
|
+
key: '157fbde9-fd29-4ec9-9546-a998e561e3f4',
|
|
2404
|
+
label: 'NEXT toolboxes',
|
|
2405
|
+
openInNewTab: false,
|
|
2406
|
+
type: 'link',
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
href: 'https://accept-sonic-equipment.com/storage-solutions/mss/',
|
|
2410
|
+
image: null,
|
|
2411
|
+
key: '390358cf-0500-49b7-845b-fdbbbc3e64de',
|
|
2412
|
+
label: 'MSS',
|
|
2413
|
+
openInNewTab: false,
|
|
2414
|
+
type: 'link',
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
href: 'https://accept-sonic-equipment.com/storage-solutions/mssplus/',
|
|
2418
|
+
image: null,
|
|
2419
|
+
key: '56c59cd3-6c58-417d-b920-2145617fe420',
|
|
2420
|
+
label: 'MSS+',
|
|
2421
|
+
openInNewTab: false,
|
|
2422
|
+
type: 'link',
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
href: 'https://accept-sonic-equipment.com/sonic-foam-system/',
|
|
2426
|
+
image: null,
|
|
2427
|
+
key: '26cd2d71-8293-4d25-8533-6ecb51b2e0af',
|
|
2428
|
+
label: 'Sonic Foam Systems',
|
|
2429
|
+
openInNewTab: false,
|
|
2430
|
+
type: 'link',
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
href: 'https://accept-sonic-equipment.com/portable-storage-solutions/',
|
|
2434
|
+
image: null,
|
|
2435
|
+
key: '13db9bdd-2bb6-40f8-a240-be21501d939e',
|
|
2436
|
+
label: 'Portable storage solutions',
|
|
2437
|
+
openInNewTab: false,
|
|
2438
|
+
type: 'link',
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
href: 'https://accept-sonic-equipment.com/hand-tools/',
|
|
2442
|
+
image: null,
|
|
2443
|
+
key: 'f6be16f3-d84e-465b-b432-54fdfd797aac',
|
|
2444
|
+
label: 'Hand tools',
|
|
2445
|
+
openInNewTab: false,
|
|
2446
|
+
type: 'link',
|
|
2447
|
+
},
|
|
2448
|
+
],
|
|
2449
|
+
key: 'eb92f2ba-413e-4fee-8e8f-9fbfe9b87556',
|
|
2450
|
+
label: 'Featured',
|
|
2451
|
+
openInNewTab: false,
|
|
2452
|
+
type: 'link-group',
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
href: null,
|
|
2456
|
+
image: null,
|
|
2457
|
+
items: [
|
|
2458
|
+
{
|
|
2459
|
+
href: 'https://accept-sonic-equipment.com/contact-us/',
|
|
2460
|
+
image: null,
|
|
2461
|
+
key: '4ece0db3-edb5-4da3-9699-0e42ac865604',
|
|
2462
|
+
label: 'Contact us',
|
|
2463
|
+
openInNewTab: false,
|
|
2464
|
+
type: 'link',
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
href: 'https://accept-sonic-equipment.com/faq/',
|
|
2468
|
+
image: null,
|
|
2469
|
+
key: 'd1957703-58c1-4338-a7ae-9da05f8403ab',
|
|
2470
|
+
label: 'FAQ',
|
|
2471
|
+
openInNewTab: false,
|
|
2472
|
+
type: 'link',
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
href: 'https://accept-sonic-equipment.com/media/r2cjc014/retour-form-sonic-en.pdf',
|
|
2476
|
+
image: null,
|
|
2477
|
+
key: 'e31e17e8-31d6-4cd8-bab5-41d3168c2be0',
|
|
2478
|
+
label: 'Return form',
|
|
2479
|
+
openInNewTab: false,
|
|
2480
|
+
type: 'link',
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
href: 'broken',
|
|
2484
|
+
image: null,
|
|
2485
|
+
key: '3c16fc70-9fa9-4e84-9554-4a0e844281af',
|
|
2486
|
+
label: 'Maintenance',
|
|
2487
|
+
openInNewTab: false,
|
|
2488
|
+
type: 'link',
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
href: 'https://accept-sonic-equipment.com/catalogues/',
|
|
2492
|
+
image: null,
|
|
2493
|
+
key: '7d52769b-03ec-474e-b13f-b0d8a975c6a7',
|
|
2494
|
+
label: 'Catalogues',
|
|
2495
|
+
openInNewTab: false,
|
|
2496
|
+
type: 'link',
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
href: 'https://accept-sonic-equipment.com/timing-tools/',
|
|
2500
|
+
image: null,
|
|
2501
|
+
key: '67d97cfe-2ea5-4943-8e48-05ca54915afb',
|
|
2502
|
+
label: 'Timing tools',
|
|
2503
|
+
openInNewTab: false,
|
|
2504
|
+
type: 'link',
|
|
2505
|
+
},
|
|
2506
|
+
],
|
|
2507
|
+
key: 'fddcff96-86da-495c-aa57-220e20bbaddd',
|
|
2508
|
+
label: 'Support',
|
|
2509
|
+
openInNewTab: false,
|
|
2510
|
+
type: 'link-group',
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
href: null,
|
|
2514
|
+
image: null,
|
|
2515
|
+
items: [
|
|
2516
|
+
{
|
|
2517
|
+
href: 'https://www.instagram.com/sonic.equipment/',
|
|
2518
|
+
image: null,
|
|
2519
|
+
key: '22163757-9b85-4703-acce-1a2e46826a32',
|
|
2520
|
+
label: 'Instagram',
|
|
2521
|
+
openInNewTab: false,
|
|
2522
|
+
type: 'link',
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
href: 'https://www.linkedin.com/company/sonic-equipment/',
|
|
2526
|
+
image: null,
|
|
2527
|
+
key: 'aac916ab-287d-4107-93f5-6220e28abb02',
|
|
2528
|
+
label: 'LinkedIn',
|
|
2529
|
+
openInNewTab: false,
|
|
2530
|
+
type: 'link',
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
href: 'https://www.youtube.com/@SonicEquipmentTV',
|
|
2534
|
+
image: null,
|
|
2535
|
+
key: '27f7d214-cbf3-4ba7-9416-f0853317882e',
|
|
2536
|
+
label: 'YouTube',
|
|
2537
|
+
openInNewTab: false,
|
|
2538
|
+
type: 'link',
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
href: 'https://www.facebook.com/SonicEquipmentGlobal',
|
|
2542
|
+
image: null,
|
|
2543
|
+
key: '708fae5b-a997-483c-b424-4b6390b5de3a',
|
|
2544
|
+
label: 'Facebbook',
|
|
2545
|
+
openInNewTab: false,
|
|
2546
|
+
type: 'link',
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
href: 'https://www.tiktok.com/@sonic.equipment',
|
|
2550
|
+
image: null,
|
|
2551
|
+
key: '850ac2ec-fe4c-4b52-99c0-dc104316e0fc',
|
|
2552
|
+
label: 'TikTok',
|
|
2553
|
+
openInNewTab: false,
|
|
2554
|
+
type: 'link',
|
|
2555
|
+
},
|
|
2556
|
+
],
|
|
2557
|
+
key: 'bf4e7344-38bf-46d7-b707-59718698081e',
|
|
2558
|
+
label: 'Follow us',
|
|
2559
|
+
openInNewTab: false,
|
|
2560
|
+
type: 'link-group',
|
|
2561
|
+
},
|
|
2562
|
+
],
|
|
2563
|
+
key: 'footer-link-block',
|
|
2564
|
+
type: 'section',
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
items: [
|
|
2568
|
+
{
|
|
2569
|
+
href: 'https://accept-sonic-equipment.com/security-privacy/',
|
|
2570
|
+
image: null,
|
|
2571
|
+
key: 'b65c0223-cff5-402c-aab0-16935d02bd25',
|
|
2572
|
+
label: 'Security & Privacy',
|
|
2573
|
+
openInNewTab: false,
|
|
2574
|
+
type: 'link',
|
|
2575
|
+
},
|
|
2576
|
+
{
|
|
2577
|
+
href: 'https://accept-sonic-equipment.com/disclaimer/',
|
|
2578
|
+
image: null,
|
|
2579
|
+
key: '77d2b2e6-ca15-49f7-b2cf-206c68ef11b3',
|
|
2580
|
+
label: 'Disclaimer',
|
|
2581
|
+
openInNewTab: false,
|
|
2582
|
+
type: 'link',
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
href: 'https://accept-sonic-equipment.com/media/y1sfgg1j/general-terms-and-conditions-sonic-en.pdf',
|
|
2586
|
+
image: null,
|
|
2587
|
+
key: '9ef4dcaf-a832-495a-b083-6a5eef1e4477',
|
|
2588
|
+
label: 'Terms & Conditions',
|
|
2589
|
+
openInNewTab: false,
|
|
2590
|
+
type: 'link',
|
|
2591
|
+
},
|
|
2592
|
+
],
|
|
2593
|
+
key: 'footer-bottom',
|
|
2594
|
+
type: 'section',
|
|
2595
|
+
},
|
|
2596
|
+
],
|
|
2597
|
+
key: 'footer',
|
|
2598
|
+
type: 'section',
|
|
2599
|
+
},
|
|
2600
|
+
],
|
|
2601
|
+
key: 'navigation',
|
|
2602
|
+
type: 'section',
|
|
2603
|
+
};
|
|
2604
|
+
|
|
2605
|
+
export { navigationData };
|