@faststore/core 2.2.47 → 2.2.49
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/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +13 -13
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/react-loadable-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/350.js +151 -34
- package/.next/server/chunks/585.js +3 -4
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/middleware-react-loadable-manifest.js +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.js.nft.json +1 -1
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_error.js.nft.json +1 -1
- package/.next/server/pages/account.js.nft.json +1 -1
- package/.next/server/pages/api/graphql.js +170 -36
- package/.next/server/pages/checkout.js.nft.json +1 -1
- package/.next/server/pages/en-US/404.html +2 -2
- package/.next/server/pages/en-US/500.html +2 -2
- package/.next/server/pages/en-US/account.html +2 -2
- package/.next/server/pages/en-US/checkout.html +2 -2
- package/.next/server/pages/en-US/login.html +2 -2
- package/.next/server/pages/en-US/s.html +2 -2
- package/.next/server/pages/en-US.html +2 -2
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/login.js.nft.json +1 -1
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/server/pages-manifest.json +1 -1
- package/.next/static/chunks/{585.4c5d40fc6a72a611.js → 585.2d70151d75fdf960.js} +1 -1
- package/.next/static/chunks/{webpack-181f40c3719492e1.js → webpack-86d49ac4b093b8cf.js} +1 -1
- package/.next/trace +80 -80
- package/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-test.log +9 -9
- package/package.json +3 -3
- package/src/pages/api/graphql.ts +29 -2
- package/src/sdk/cart/useCheckoutButton.ts +3 -3
- package/src/server/index.ts +4 -1
- /package/.next/static/{C1Stv9_fCj_6TDRi78GGL → lMS5jtivFe-LwSHwft4A1}/_buildManifest.js +0 -0
- /package/.next/static/{C1Stv9_fCj_6TDRi78GGL → lMS5jtivFe-LwSHwft4A1}/_ssgManifest.js +0 -0
|
@@ -257,16 +257,75 @@ const fetchAPI = async (info, init, options) => {
|
|
|
257
257
|
};
|
|
258
258
|
//# sourceMappingURL=fetch.js.map
|
|
259
259
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/utils/cookies.js
|
|
260
|
-
const
|
|
260
|
+
const MATCH_FIRST_SET_COOKIE_KEY_VALUE = /^([^=]+)=([^;]*)/;
|
|
261
|
+
/**
|
|
262
|
+
* This function updates the ctx.storage.cookies, that is used in each request.
|
|
263
|
+
*
|
|
264
|
+
* ctx.storage.cookies is a Map<string[1], Record<string, string>[2]> where,
|
|
265
|
+
* [1] cookie key
|
|
266
|
+
* [2] {
|
|
267
|
+
* value: cookie value,
|
|
268
|
+
* setCookie: setCookie used in browser response
|
|
269
|
+
* }
|
|
270
|
+
*/
|
|
271
|
+
const updatesContextStorageCookies = (setCookieValue, ctx) => {
|
|
272
|
+
const matchCookie = setCookieValue.match(MATCH_FIRST_SET_COOKIE_KEY_VALUE);
|
|
273
|
+
if (matchCookie) {
|
|
274
|
+
const cookieKey = matchCookie[1];
|
|
275
|
+
const cookieValue = matchCookie[2];
|
|
276
|
+
ctx.storage.cookies.set(cookieKey, {
|
|
277
|
+
value: cookieValue,
|
|
278
|
+
setCookie: setCookieValue,
|
|
279
|
+
});
|
|
280
|
+
}
|
|
281
|
+
};
|
|
261
282
|
const setCookie = (headers, ctx) => {
|
|
262
|
-
const faststoreAPIHostname = new URL(`https://${ctx.headers.host}`).hostname;
|
|
263
283
|
headers
|
|
264
284
|
.getSetCookie()
|
|
265
|
-
.forEach((
|
|
266
|
-
// Replaces original cookie domain for FastStore API's domain hostname
|
|
267
|
-
cookie.replace(MATCH_DOMAIN_REGEXP, `; domain=${faststoreAPIHostname}`)));
|
|
285
|
+
.forEach((setCookieValue) => updatesContextStorageCookies(setCookieValue, ctx));
|
|
268
286
|
};
|
|
269
287
|
const getStoreCookie = (ctx) => (headers) => setCookie(headers, ctx);
|
|
288
|
+
/**
|
|
289
|
+
* This function returns a modified copy of the original cookie header (ctx.headers.cookie from the first request)
|
|
290
|
+
* with the cookie values that comes in each request (ctx.storage.cookies).
|
|
291
|
+
* If there is no cookies in storage, the ctx.headers?.cookie is used
|
|
292
|
+
*
|
|
293
|
+
* ctx.storage.cookies is a Map<string[1], Record<string, string>[2]> where,
|
|
294
|
+
* [1] cookie key
|
|
295
|
+
* [2] {
|
|
296
|
+
* value: cookie value,
|
|
297
|
+
* setCookie: setCookie used in browser response
|
|
298
|
+
* }
|
|
299
|
+
*/
|
|
300
|
+
const getUpdatedCookie = (ctx) => {
|
|
301
|
+
if (!ctx.headers?.cookie) {
|
|
302
|
+
return null;
|
|
303
|
+
}
|
|
304
|
+
const contextStorageCookies = Array.from(ctx.storage.cookies.entries());
|
|
305
|
+
if (contextStorageCookies.length === 0) {
|
|
306
|
+
return ctx.headers.cookie;
|
|
307
|
+
}
|
|
308
|
+
return contextStorageCookies.reduce((existingCookies, [storageCookieKey, { value: storageCookieValue }]) => updatesCookieValueByKey(existingCookies, storageCookieKey, storageCookieValue), ctx.headers.cookie);
|
|
309
|
+
};
|
|
310
|
+
/**
|
|
311
|
+
* This function updates the cookie value based on its key
|
|
312
|
+
*
|
|
313
|
+
* const existingCookies = 'key=value1; key2=; key3=value3';
|
|
314
|
+
* const storageCookieKey = 'key2';
|
|
315
|
+
* const storageCookieValue = 'value2'
|
|
316
|
+
*
|
|
317
|
+
* updatesCookieValueByKey(existingCookies, storageCookieKey, storageCookieValue) returns 'key=value1; key2=value2; key3=value3';
|
|
318
|
+
*/
|
|
319
|
+
const updatesCookieValueByKey = (existingCookies, storageCookieKey, storageCookieValue) => {
|
|
320
|
+
const MATCH_COOKIE_KEY_VALUE = new RegExp(`(${storageCookieKey})=([^;]*)`);
|
|
321
|
+
const cookieParts = existingCookies.match(MATCH_COOKIE_KEY_VALUE);
|
|
322
|
+
// replaces original cookie with the one coming from storage
|
|
323
|
+
if (cookieParts) {
|
|
324
|
+
return existingCookies.replace(MATCH_FIRST_SET_COOKIE_KEY_VALUE, `${cookieParts[1]}=${storageCookieValue}`);
|
|
325
|
+
}
|
|
326
|
+
// add new storage cookie to the original list of cookies
|
|
327
|
+
return `${existingCookies};${storageCookieKey}=${storageCookieValue}`;
|
|
328
|
+
};
|
|
270
329
|
//# sourceMappingURL=cookies.js.map
|
|
271
330
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/commerce/index.js
|
|
272
331
|
|
|
@@ -280,6 +339,8 @@ const BASE_INIT = {
|
|
|
280
339
|
const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
281
340
|
const base = `https://${account}.${environment}.com.br`;
|
|
282
341
|
const storeCookies = getStoreCookie(ctx);
|
|
342
|
+
// replacing www. only for testing while www.vtexfaststore.com is configured with www
|
|
343
|
+
const forwardedHost = (new Headers(ctx.headers).get('x-forwarded-host') ?? ctx.headers?.host ?? '').replace('www.', '');
|
|
283
344
|
return {
|
|
284
345
|
catalog: {
|
|
285
346
|
salesChannel: (sc) => fetchAPI(`${base}/api/catalog_system/pub/saleschannel/${sc}`, undefined, { storeCookies }),
|
|
@@ -309,8 +370,16 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
309
370
|
const params = new URLSearchParams({
|
|
310
371
|
sc: salesChannel,
|
|
311
372
|
});
|
|
373
|
+
const headers = {
|
|
374
|
+
'content-type': 'application/json',
|
|
375
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
376
|
+
};
|
|
377
|
+
const cookie = getUpdatedCookie(ctx);
|
|
378
|
+
if (cookie)
|
|
379
|
+
headers.cookie = cookie;
|
|
312
380
|
return fetchAPI(`${base}/api/checkout/pub/orderForms/simulation?${params.toString()}`, {
|
|
313
381
|
...BASE_INIT,
|
|
382
|
+
headers,
|
|
314
383
|
body: JSON.stringify(args),
|
|
315
384
|
}, { storeCookies });
|
|
316
385
|
},
|
|
@@ -331,13 +400,17 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
331
400
|
selectedAddresses: selectedAddresses,
|
|
332
401
|
clearAddressIfPostalCodeNotFound: incrementAddress,
|
|
333
402
|
};
|
|
403
|
+
const headers = {
|
|
404
|
+
'content-type': 'application/json',
|
|
405
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
406
|
+
};
|
|
407
|
+
const cookie = getUpdatedCookie(ctx);
|
|
408
|
+
if (cookie)
|
|
409
|
+
headers.cookie = cookie;
|
|
334
410
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/attachments/shippingData`, {
|
|
335
411
|
...BASE_INIT,
|
|
412
|
+
headers,
|
|
336
413
|
body: JSON.stringify(mappedBody),
|
|
337
|
-
headers: {
|
|
338
|
-
'content-type': 'application/json',
|
|
339
|
-
cookie: ctx.headers.cookie,
|
|
340
|
-
},
|
|
341
414
|
}, { storeCookies });
|
|
342
415
|
},
|
|
343
416
|
orderForm: ({ id, refreshOutdatedData = true, channel = ctx.storage.channel, }) => {
|
|
@@ -346,33 +419,46 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
346
419
|
refreshOutdatedData: refreshOutdatedData.toString(),
|
|
347
420
|
sc: salesChannel,
|
|
348
421
|
});
|
|
349
|
-
const
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
422
|
+
const headers = {
|
|
423
|
+
'content-type': 'application/json',
|
|
424
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
425
|
+
};
|
|
426
|
+
const cookie = getUpdatedCookie(ctx);
|
|
427
|
+
if (cookie)
|
|
428
|
+
headers.cookie = cookie;
|
|
429
|
+
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}?${params.toString()}`, {
|
|
430
|
+
...BASE_INIT,
|
|
431
|
+
headers,
|
|
432
|
+
}, { storeCookies });
|
|
359
433
|
},
|
|
360
434
|
clearOrderFormMessages: ({ id }) => {
|
|
435
|
+
const headers = {
|
|
436
|
+
'content-type': 'application/json',
|
|
437
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
438
|
+
};
|
|
439
|
+
const cookie = getUpdatedCookie(ctx);
|
|
440
|
+
if (cookie)
|
|
441
|
+
headers.cookie = cookie;
|
|
361
442
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/messages/clear`, {
|
|
362
443
|
...BASE_INIT,
|
|
444
|
+
headers,
|
|
363
445
|
body: '{}',
|
|
364
|
-
}
|
|
446
|
+
});
|
|
365
447
|
},
|
|
366
448
|
updateOrderFormItems: ({ id, orderItems, allowOutdatedData = 'paymentData', salesChannel = ctx.storage.channel.salesChannel, shouldSplitItem = true, }) => {
|
|
367
449
|
const params = new URLSearchParams({
|
|
368
450
|
allowOutdatedData,
|
|
369
451
|
sc: salesChannel,
|
|
370
452
|
});
|
|
453
|
+
const headers = {
|
|
454
|
+
'content-type': 'application/json',
|
|
455
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
456
|
+
};
|
|
457
|
+
const cookie = getUpdatedCookie(ctx);
|
|
458
|
+
if (cookie)
|
|
459
|
+
headers.cookie = cookie;
|
|
371
460
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/items?${params}`, {
|
|
372
|
-
headers
|
|
373
|
-
'content-type': 'application/json',
|
|
374
|
-
cookie: ctx.headers?.cookie,
|
|
375
|
-
},
|
|
461
|
+
headers,
|
|
376
462
|
body: JSON.stringify({
|
|
377
463
|
orderItems,
|
|
378
464
|
noSplitItem: !shouldSplitItem,
|
|
@@ -381,11 +467,18 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
381
467
|
}, { storeCookies });
|
|
382
468
|
},
|
|
383
469
|
setCustomData: ({ id, appId, key, value, }) => {
|
|
470
|
+
const headers = {
|
|
471
|
+
'content-type': 'application/json',
|
|
472
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
473
|
+
};
|
|
474
|
+
const cookie = getUpdatedCookie(ctx);
|
|
475
|
+
if (cookie)
|
|
476
|
+
headers.cookie = cookie;
|
|
384
477
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/customData/${appId}/${key}`, {
|
|
385
|
-
|
|
478
|
+
headers,
|
|
386
479
|
body: JSON.stringify({ value }),
|
|
387
480
|
method: 'PUT',
|
|
388
|
-
}
|
|
481
|
+
});
|
|
389
482
|
},
|
|
390
483
|
region: async ({ postalCode, geoCoordinates, country, salesChannel, }) => {
|
|
391
484
|
const params = new URLSearchParams({
|
|
@@ -396,21 +489,45 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
396
489
|
? params.append('postalCode', postalCode)
|
|
397
490
|
: params.append('geoCoordinates', `${geoCoordinates?.longitude};${geoCoordinates?.latitude}`);
|
|
398
491
|
const url = `${base}/api/checkout/pub/regions/?${params.toString()}`;
|
|
399
|
-
|
|
492
|
+
const headers = {
|
|
493
|
+
'content-type': 'application/json',
|
|
494
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
495
|
+
};
|
|
496
|
+
const cookie = getUpdatedCookie(ctx);
|
|
497
|
+
if (cookie)
|
|
498
|
+
headers.cookie = cookie;
|
|
499
|
+
return fetchAPI(url, {
|
|
500
|
+
headers,
|
|
501
|
+
}, { storeCookies });
|
|
400
502
|
},
|
|
401
503
|
address: async ({ postalCode, country, }) => {
|
|
402
|
-
|
|
504
|
+
const headers = {
|
|
505
|
+
'content-type': 'application/json',
|
|
506
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
507
|
+
};
|
|
508
|
+
const cookie = getUpdatedCookie(ctx);
|
|
509
|
+
if (cookie)
|
|
510
|
+
headers.cookie = cookie;
|
|
511
|
+
return fetchAPI(`${base}/api/checkout/pub/postal-code/${country}/${postalCode}`, {
|
|
512
|
+
headers,
|
|
513
|
+
}, { storeCookies });
|
|
403
514
|
},
|
|
404
515
|
},
|
|
405
516
|
session: (search) => {
|
|
406
517
|
const params = new URLSearchParams(search);
|
|
407
518
|
params.set('items', 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol');
|
|
519
|
+
const cookie = getUpdatedCookie(ctx);
|
|
520
|
+
const headers = cookie
|
|
521
|
+
? {
|
|
522
|
+
'content-type': 'application/json',
|
|
523
|
+
cookie,
|
|
524
|
+
}
|
|
525
|
+
: {
|
|
526
|
+
'content-type': 'application/json',
|
|
527
|
+
};
|
|
408
528
|
return fetchAPI(`${base}/api/sessions?${params.toString()}`, {
|
|
409
529
|
method: 'POST',
|
|
410
|
-
headers
|
|
411
|
-
'content-type': 'application/json',
|
|
412
|
-
cookie: ctx.headers.cookie,
|
|
413
|
-
},
|
|
530
|
+
headers,
|
|
414
531
|
body: '{}',
|
|
415
532
|
}, { storeCookies });
|
|
416
533
|
},
|
|
@@ -2383,7 +2500,7 @@ const getContextFactory = (options) => (ctx) => {
|
|
|
2383
2500
|
channel: ChannelMarshal.parse(options.channel),
|
|
2384
2501
|
flags: options.flags ?? {},
|
|
2385
2502
|
locale: options.locale,
|
|
2386
|
-
cookies: new
|
|
2503
|
+
cookies: new Map(),
|
|
2387
2504
|
};
|
|
2388
2505
|
ctx.clients = getClients(options, ctx);
|
|
2389
2506
|
ctx.loaders = getLoaders(options, ctx);
|
|
@@ -2723,6 +2840,20 @@ var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_fas
|
|
|
2723
2840
|
([_faststore_api__WEBPACK_IMPORTED_MODULE_0__, _server__WEBPACK_IMPORTED_MODULE_1__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);
|
|
2724
2841
|
|
|
2725
2842
|
|
|
2843
|
+
/**
|
|
2844
|
+
* This function replaces the setCookie domain so that we can use localhost in dev environment.
|
|
2845
|
+
*
|
|
2846
|
+
* @param request NextApiRequest
|
|
2847
|
+
* @param setCookie setCookie string that comes from FastStore API
|
|
2848
|
+
* @returns setCookie string with it domains replace
|
|
2849
|
+
*/
|
|
2850
|
+
|
|
2851
|
+
const replaceSetCookieDomain = (request, setCookie) => {
|
|
2852
|
+
const MATCH_DOMAIN_REGEXP = /(?:^|;\s*)(?:domain=)([^;]+)/i;
|
|
2853
|
+
const faststoreAPIHostname = new URL(`https://${request.headers.host}`).hostname; // Replaces original cookie domain for FastStore API's domain hostname
|
|
2854
|
+
|
|
2855
|
+
return setCookie.replace(MATCH_DOMAIN_REGEXP, `; domain=${faststoreAPIHostname}`);
|
|
2856
|
+
};
|
|
2726
2857
|
|
|
2727
2858
|
const parseRequest = request => {
|
|
2728
2859
|
const {
|
|
@@ -2776,9 +2907,12 @@ const handler = async (request, response) => {
|
|
|
2776
2907
|
}
|
|
2777
2908
|
|
|
2778
2909
|
const cacheControl = !hasErrors && extensions.cacheControl ? (0,_faststore_api__WEBPACK_IMPORTED_MODULE_0__/* .stringifyCacheControl */ .Ve)(extensions.cacheControl) : 'no-cache, no-store';
|
|
2910
|
+
const setCookieValues = Array.from(extensions.cookies.values());
|
|
2779
2911
|
|
|
2780
|
-
if (
|
|
2781
|
-
response.setHeader('set-cookie',
|
|
2912
|
+
if (setCookieValues.length > 0 && !hasErrors) {
|
|
2913
|
+
response.setHeader('set-cookie', setCookieValues.map(({
|
|
2914
|
+
setCookie
|
|
2915
|
+
}) => false ? 0 : setCookie));
|
|
2782
2916
|
}
|
|
2783
2917
|
|
|
2784
2918
|
response.setHeader('cache-control', cacheControl);
|
|
@@ -2944,7 +3078,7 @@ const apiOptions = {
|
|
|
2944
3078
|
/***/ 5713:
|
|
2945
3079
|
/***/ ((module) => {
|
|
2946
3080
|
|
|
2947
|
-
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.
|
|
3081
|
+
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.48"}');
|
|
2948
3082
|
|
|
2949
3083
|
/***/ }),
|
|
2950
3084
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/
|
|
1
|
+
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
})(window,document,'script',"dataLayer","GTM-PGHZ95N");</script><script type="text/partytown">
|
|
12
12
|
window.sendrc=function(en,ed){window.NavigationCapture&&window.NavigationCapture.sendEvent(en,ed)};
|
|
13
13
|
</script><script type="text/partytown" async="" src="https://io.vtex.com.br/rc/rc.js"></script><script type="text/partytown">f=window.vtexaf=window.vtexaf||function(){(f.q=f.q||[]).push(arguments)};f.l=+new Date</script><script type="text/partytown" async="" src="https://activity-flow.vtex.com/af/af.js"></script><script>!(function(w,p,f,c){c=w[p]=w[p]||{};c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.6.4 - MIT builder.io */
|
|
14
|
-
!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.6.4":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement("script")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(".").map((function(e,n,i){p=p[i[n]]=n+1<i.length?"push"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);document.currentScript.dataset.partytown="";</script><link rel="preload" href="/_next/static/css/5d1f64b61ea581f4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/5d1f64b61ea581f4.css" data-n-g=""/><link rel="preload" href="/_next/static/css/29868543c76bc6fd.css" as="style"/><link rel="stylesheet" href="/_next/static/css/29868543c76bc6fd.css" data-n-p=""/><link rel="preload" href="/_next/static/css/df588bb98c0b0ca6.css" as="style"/><link rel="stylesheet" href="/_next/static/css/df588bb98c0b0ca6.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-
|
|
14
|
+
!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.6.4":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement("script")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(".").map((function(e,n,i){p=p[i[n]]=n+1<i.length?"push"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);document.currentScript.dataset.partytown="";</script><link rel="preload" href="/_next/static/css/5d1f64b61ea581f4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/5d1f64b61ea581f4.css" data-n-g=""/><link rel="preload" href="/_next/static/css/29868543c76bc6fd.css" as="style"/><link rel="stylesheet" href="/_next/static/css/29868543c76bc6fd.css" data-n-p=""/><link rel="preload" href="/_next/static/css/df588bb98c0b0ca6.css" as="style"/><link rel="stylesheet" href="/_next/static/css/df588bb98c0b0ca6.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-86d49ac4b093b8cf.js" defer=""></script><script src="/_next/static/chunks/framework-dfd14d7ce6600b03.js" defer=""></script><script src="/_next/static/chunks/main-e4e873ee741162eb.js" defer=""></script><script src="/_next/static/chunks/pages/_app-30b9666307e4b3b1.js" defer=""></script><script src="/_next/static/chunks/223-cb77217cce52d45c.js" defer=""></script><script src="/_next/static/chunks/469-1925f9bd1c82e92b.js" defer=""></script><script src="/_next/static/chunks/pages/404-2240f0b22db2d370.js" defer=""></script><script src="/_next/static/lMS5jtivFe-LwSHwft4A1/_buildManifest.js" defer=""></script><script src="/_next/static/lMS5jtivFe-LwSHwft4A1/_ssgManifest.js" defer=""></script></head><body class="theme"><div id="__next"><style>
|
|
15
15
|
#nprogress {
|
|
16
16
|
pointer-events: none;
|
|
17
17
|
}
|
|
@@ -78,4 +78,4 @@
|
|
|
78
78
|
transform: rotate(360deg);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
</style><section class="section section_section__YiggP section-alert"><div role="alert" data-fs-alert="true" data-fs-alert-dismissible="true" data-fs-content="alert" data-testid="fs-alert"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#BellRinging"></use></svg><p data-fs-alert-content="true">Get 15% off today: NEW15!</p><a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-size="regular" data-testid="fs-link" data-fs-alert-link="true" href="/office" target="_self">Buy now</a><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="Close" data-fs-alert-button="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#X"></use></svg></span></div></button></div></section><section class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" role="banner" data-fs-navbar-scroll="" data-testid="fs-navbar"><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-fs-content="navbar" data-testid="fs-navbar-row"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="List" data-fs-navbar-button-menu="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#List"></use></svg></span></div></button><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" data-fs-navbar-logo="true" title="Go To Home" href="/"><div data-fs-logo="true"><img data-fs-image="true" alt="Store logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="fs-search-input" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="Search everything at the store" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-search-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><div data-fs-navbar-buttons="true" data-testid="fs-navbar-buttons" data-fs-navbar-search-expanded="false"><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="store-input-mobile" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="" hidden="" aria-hidden="true" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="store-input-mobile-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-link-button" data-fs-button-signin-link="true" href="/login" class="text__title-mini" aria-label="User"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#User"></use></svg></span><span>Sign In</span></div></a><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="cart-toggle" data-fs-icon-button="true" aria-label="Shopping Cart" data-fs-cart-toggle="true" data-items="0"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#ShoppingCart"></use></svg></span><span><div data-fs-badge="true" data-fs-badge-size="small" data-fs-badge-counter="true" data-testid="fs-badge"><div data-fs-badge-wrapper="true">0</div></div></span></div></button></div></div></section><nav data-fs-navbar-links="true" data-testid="fs-navbar-links" class="hidden-mobile"><div data-fs-navbar-links-wrapper="true" data-fs-content="navbar"><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#MapPin"></use></svg></span><span>Set Your Location</span></div></button><ul role="list" data-fs-list="true" data-testid="fs-navbar-links-list" data-fs-navbar-links-list="true"><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/office">Office</a></li><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/technology">Technology</a></li></ul></div></nav></header></section><section class="section section_section__RNxUN section-region-bar display-mobile"><div data-fs-region-bar="true"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Map Pin icon"><use href="/icons.svg#MapPin"></use></svg><span data-fs-region-bar-message="true">Set your location</span></span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Caret Right icon"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><main><section class="section section_section__TgowL section-empty-state"><section data-fs-empty-state="true" data-fs-empty-state-variant="default" data-fs-empty-state-bkg-color="light" data-fs-content="empty-state" data-testid="fs-empty-state"><header data-fs-empty-state-title="true"><svg data-fs-icon="true" data-testid="fs-icon" width="56" height="56" stroke-width="8"><use href="/icons.svg#CircleWavyWarning"></use></svg><p>Not Found: 404</p></header><p>This app could not find url <!-- -->/404</p></section></section></main><section class="section section section_section__Ox_hX section-footer"><footer data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true"><div data-fs-content="footer"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-content="incentives"><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Return</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Pickup</span><span data-fs-incentive-description="true">Options</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Shipping</span></div></div></li></ul></div><div data-fs-footer-navigation="true"><section data-fs-footer="true" data-fs-footer-links="true"><div class="display-mobile"><div data-fs-accordion="true" role="region" data-testid="fs-accordion"><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--0" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--0"><div data-fs-button-wrapper="true"><span>Our company</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--0" data-fs-accordion-panel="true" aria-labelledby="button--0" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--1" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--1"><div data-fs-button-wrapper="true"><span>Orders and Purchases</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--1" data-fs-accordion-panel="true" aria-labelledby="button--1" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--2" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--2"><div data-fs-button-wrapper="true"><span>Support & Services</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--2" data-fs-accordion-panel="true" aria-labelledby="button--2" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--3" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--3"><div data-fs-button-wrapper="true"><span>Partnerships</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--3" data-fs-accordion-panel="true" aria-labelledby="button--3" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></div></div></div><div class="hidden-mobile"><nav data-fs-footer-links-columns="true"><div><p data-fs-footer-links-title="true">Our company</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Orders and Purchases</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div><div><p data-fs-footer-links-title="true">Support & Services</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Partnerships</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.facebook.com" title="Facebook" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Facebook"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.instagram.com" title="Instagram" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Instagram"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.pinterest.com" title="Pinterest" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Pinterest"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.twitter.com" title="Twitter" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Twitter"></use></svg></a></li></ul></section></div><div data-fs-footer-info="true"><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" href="https://starter.vtex.app/" title="FastStore Starter"><div data-fs-logo="true"><img data-fs-image="true" alt="Store Logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-payment-methods-flags="true"><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Diners"></use></svg><span data-fs-sr-only="true">Diners Club</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Visa"></use></svg><span data-fs-sr-only="true">Visa</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Mastercard"></use></svg><span data-fs-sr-only="true">Mastercard</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#EloCard"></use></svg><span data-fs-sr-only="true">Elo Card</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#PayPal"></use></svg><span data-fs-sr-only="true">PayPal</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#GooglePay"></use></svg><span data-fs-sr-only="true">GooglePay</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#ApplePay"></use></svg><span data-fs-sr-only="true">Apple Pay</span></li></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p>This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000.</p></div></div></div></footer></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"globalSections":{"sections":[{"id":"9accea9d-6e4f-489a-a597-224237912329","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 15% off today: NEW15!"}},{"id":"91ac1a61-9aa3-4769-8af4-c14a4b33fc92","name":"Navbar","data":{"logo":{"link":{"url":"/","title":"Go To Home"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"searchInput":{"sort":"score_desc"},"signInButton":{"icon":{"icon":"User","alt":"User"},"label":"Sign In","myAccountLabel":"My Account"},"cartIcon":{"icon":"ShoppingCart","alt":"Shopping Cart"},"navigation":{"regionalization":{"enabled":true,"icon":{"icon":"MapPin","alt":"MapPin"},"label":"Set Your Location"},"pageLinks":[{"text":"Office","url":"/office"},{"text":"Technology","url":"/technology"}],"menu":{"icon":{"icon":"List","alt":"List"}},"home":{"label":"Go to Home"}}}},{"id":"98a880bc-3190-448c-92fc-e49b3105de17","name":"RegionBar","data":{"icon":{"icon":"MapPin","alt":"Map Pin icon"},"label":"Set your location","editLabel":"Edit","buttonIcon":{"icon":"CaretRight","alt":"Caret Right icon"}}},{"id":"5e901790-8fbb-4a0d-a08b-67929a3b8d38","name":"CartSidebar","data":{"title":"Your Cart","alert":{"icon":{"icon":"Truck","alt":"Arrow Right icon"},"text":"Free shipping starts at $300"},"checkoutButton":{"label":"Checkout","loadingLabel":"Loading...","icon":{"icon":"ArrowRight","alt":"Arrow Right icon"}}}},{"id":"2e154ab1-0196-4479-b276-92344612b9dc","name":"RegionModal","data":{"title":"Set your location","description":"Prices, offers and availability may vary according to your location.","closeButtonAriaLabel":"Close Region Modal","inputField":{"label":"Postal Code","errorMessage":"You entered an invalid Postal Code"},"idkPostalCodeLink":{"text":"I don't know my Postal Code","icon":{"icon":"ArrowSquareOut","alt":"Arrow Square Out icon"}}}},{"id":"6894ec45-8450-4d0c-9e96-0d60f5e4f2cc","name":"Children","data":{}},{"id":"efc78f3f-215b-4a82-a369-15b80324ae35","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"ShieldCheck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Free","icon":"Calendar","secondLineText":"Return"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"},{"firstLineText":"Free","secondLineText":"Shipping","title":" ","icon":"Truck"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"},{"text":"Our Blog","url":"https://starter.vtex.app"},{"text":"Stores","url":"https://starter.vtex.app"},{"text":"Work With Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"},{"items":[{"text":"Returns and Exchanges","url":"/"},{"text":"Product Recall","url":"/"},{"text":"Gift Cards","url":"/"}],"sectionTitle":"Orders and Purchases"},{"items":[{"text":"Support Center","url":"/"},{"text":"Support \u0026 Services","url":"/"},{"text":"Contact Us","url":"/"}],"sectionTitle":"Support \u0026 Services"},{"items":[{"text":"Affiliate Program","url":"/"},{"text":"Marketplace","url":"/"}],"sectionTitle":"Partnerships"}],"footerSocial":{"title":"Follow Us","socialLinks":[{"icon":{"icon":"Facebook"},"alt":"Facebook","url":"https://www.facebook.com"},{"icon":{"icon":"Instagram"},"alt":"Instagram","url":"https://www.instagram.com"},{"icon":{"icon":"Pinterest"},"alt":"Pinterest","url":"https://www.pinterest.com"},{"icon":{"icon":"Twitter"},"alt":"Twitter","url":"https://www.twitter.com"}]},"logo":{"link":{"title":"FastStore Starter","url":"https://starter.vtex.app/"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png","alt":"Store Logo"},"acceptedPaymentMethods":{"showPaymentMethods":true,"title":"Payment Methods","paymentMethods":[{"icon":{"icon":"Diners"},"alt":"Diners Club"},{"icon":{"icon":"Visa"},"alt":"Visa"},{"icon":{"icon":"Mastercard"},"alt":"Mastercard"},{"icon":{"icon":"EloCard"},"alt":"Elo Card"},{"icon":{"icon":"PayPal"},"alt":"PayPal"},{"icon":{"icon":"GooglePay"},"alt":"GooglePay"},{"icon":{"icon":"ApplePay"},"alt":"Apple Pay"}]},"copyrightInfo":"This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000."}}]}},"__N_SSG":true},"page":"/404","query":{},"buildId":"C1Stv9_fCj_6TDRi78GGL","isFallback":false,"gsp":true,"locale":"en-US","locales":["en-US"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>
|
|
81
|
+
</style><section class="section section_section__YiggP section-alert"><div role="alert" data-fs-alert="true" data-fs-alert-dismissible="true" data-fs-content="alert" data-testid="fs-alert"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#BellRinging"></use></svg><p data-fs-alert-content="true">Get 15% off today: NEW15!</p><a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-size="regular" data-testid="fs-link" data-fs-alert-link="true" href="/office" target="_self">Buy now</a><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="Close" data-fs-alert-button="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#X"></use></svg></span></div></button></div></section><section class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" role="banner" data-fs-navbar-scroll="" data-testid="fs-navbar"><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-fs-content="navbar" data-testid="fs-navbar-row"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="List" data-fs-navbar-button-menu="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#List"></use></svg></span></div></button><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" data-fs-navbar-logo="true" title="Go To Home" href="/"><div data-fs-logo="true"><img data-fs-image="true" alt="Store logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="fs-search-input" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="Search everything at the store" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-search-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><div data-fs-navbar-buttons="true" data-testid="fs-navbar-buttons" data-fs-navbar-search-expanded="false"><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="store-input-mobile" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="" hidden="" aria-hidden="true" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="store-input-mobile-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-link-button" data-fs-button-signin-link="true" href="/login" class="text__title-mini" aria-label="User"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#User"></use></svg></span><span>Sign In</span></div></a><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="cart-toggle" data-fs-icon-button="true" aria-label="Shopping Cart" data-fs-cart-toggle="true" data-items="0"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#ShoppingCart"></use></svg></span><span><div data-fs-badge="true" data-fs-badge-size="small" data-fs-badge-counter="true" data-testid="fs-badge"><div data-fs-badge-wrapper="true">0</div></div></span></div></button></div></div></section><nav data-fs-navbar-links="true" data-testid="fs-navbar-links" class="hidden-mobile"><div data-fs-navbar-links-wrapper="true" data-fs-content="navbar"><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#MapPin"></use></svg></span><span>Set Your Location</span></div></button><ul role="list" data-fs-list="true" data-testid="fs-navbar-links-list" data-fs-navbar-links-list="true"><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/office">Office</a></li><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/technology">Technology</a></li></ul></div></nav></header></section><section class="section section_section__RNxUN section-region-bar display-mobile"><div data-fs-region-bar="true"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Map Pin icon"><use href="/icons.svg#MapPin"></use></svg><span data-fs-region-bar-message="true">Set your location</span></span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Caret Right icon"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><main><section class="section section_section__TgowL section-empty-state"><section data-fs-empty-state="true" data-fs-empty-state-variant="default" data-fs-empty-state-bkg-color="light" data-fs-content="empty-state" data-testid="fs-empty-state"><header data-fs-empty-state-title="true"><svg data-fs-icon="true" data-testid="fs-icon" width="56" height="56" stroke-width="8"><use href="/icons.svg#CircleWavyWarning"></use></svg><p>Not Found: 404</p></header><p>This app could not find url <!-- -->/404</p></section></section></main><section class="section section section_section__Ox_hX section-footer"><footer data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true"><div data-fs-content="footer"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-content="incentives"><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Return</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Pickup</span><span data-fs-incentive-description="true">Options</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Shipping</span></div></div></li></ul></div><div data-fs-footer-navigation="true"><section data-fs-footer="true" data-fs-footer-links="true"><div class="display-mobile"><div data-fs-accordion="true" role="region" data-testid="fs-accordion"><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--0" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--0"><div data-fs-button-wrapper="true"><span>Our company</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--0" data-fs-accordion-panel="true" aria-labelledby="button--0" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--1" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--1"><div data-fs-button-wrapper="true"><span>Orders and Purchases</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--1" data-fs-accordion-panel="true" aria-labelledby="button--1" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--2" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--2"><div data-fs-button-wrapper="true"><span>Support & Services</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--2" data-fs-accordion-panel="true" aria-labelledby="button--2" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--3" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--3"><div data-fs-button-wrapper="true"><span>Partnerships</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--3" data-fs-accordion-panel="true" aria-labelledby="button--3" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></div></div></div><div class="hidden-mobile"><nav data-fs-footer-links-columns="true"><div><p data-fs-footer-links-title="true">Our company</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Orders and Purchases</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div><div><p data-fs-footer-links-title="true">Support & Services</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Partnerships</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.facebook.com" title="Facebook" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Facebook"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.instagram.com" title="Instagram" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Instagram"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.pinterest.com" title="Pinterest" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Pinterest"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.twitter.com" title="Twitter" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Twitter"></use></svg></a></li></ul></section></div><div data-fs-footer-info="true"><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" href="https://starter.vtex.app/" title="FastStore Starter"><div data-fs-logo="true"><img data-fs-image="true" alt="Store Logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-payment-methods-flags="true"><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Diners"></use></svg><span data-fs-sr-only="true">Diners Club</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Visa"></use></svg><span data-fs-sr-only="true">Visa</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Mastercard"></use></svg><span data-fs-sr-only="true">Mastercard</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#EloCard"></use></svg><span data-fs-sr-only="true">Elo Card</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#PayPal"></use></svg><span data-fs-sr-only="true">PayPal</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#GooglePay"></use></svg><span data-fs-sr-only="true">GooglePay</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#ApplePay"></use></svg><span data-fs-sr-only="true">Apple Pay</span></li></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p>This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000.</p></div></div></div></footer></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"globalSections":{"sections":[{"id":"9accea9d-6e4f-489a-a597-224237912329","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 15% off today: NEW15!"}},{"id":"91ac1a61-9aa3-4769-8af4-c14a4b33fc92","name":"Navbar","data":{"logo":{"link":{"url":"/","title":"Go To Home"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"searchInput":{"sort":"score_desc"},"signInButton":{"icon":{"icon":"User","alt":"User"},"label":"Sign In","myAccountLabel":"My Account"},"cartIcon":{"icon":"ShoppingCart","alt":"Shopping Cart"},"navigation":{"regionalization":{"enabled":true,"icon":{"icon":"MapPin","alt":"MapPin"},"label":"Set Your Location"},"pageLinks":[{"text":"Office","url":"/office"},{"text":"Technology","url":"/technology"}],"menu":{"icon":{"icon":"List","alt":"List"}},"home":{"label":"Go to Home"}}}},{"id":"98a880bc-3190-448c-92fc-e49b3105de17","name":"RegionBar","data":{"icon":{"icon":"MapPin","alt":"Map Pin icon"},"label":"Set your location","editLabel":"Edit","buttonIcon":{"icon":"CaretRight","alt":"Caret Right icon"}}},{"id":"5e901790-8fbb-4a0d-a08b-67929a3b8d38","name":"CartSidebar","data":{"title":"Your Cart","alert":{"icon":{"icon":"Truck","alt":"Arrow Right icon"},"text":"Free shipping starts at $300"},"checkoutButton":{"label":"Checkout","loadingLabel":"Loading...","icon":{"icon":"ArrowRight","alt":"Arrow Right icon"}}}},{"id":"2e154ab1-0196-4479-b276-92344612b9dc","name":"RegionModal","data":{"title":"Set your location","description":"Prices, offers and availability may vary according to your location.","closeButtonAriaLabel":"Close Region Modal","inputField":{"label":"Postal Code","errorMessage":"You entered an invalid Postal Code"},"idkPostalCodeLink":{"text":"I don't know my Postal Code","icon":{"icon":"ArrowSquareOut","alt":"Arrow Square Out icon"}}}},{"id":"6894ec45-8450-4d0c-9e96-0d60f5e4f2cc","name":"Children","data":{}},{"id":"efc78f3f-215b-4a82-a369-15b80324ae35","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"ShieldCheck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Free","icon":"Calendar","secondLineText":"Return"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"},{"firstLineText":"Free","secondLineText":"Shipping","title":" ","icon":"Truck"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"},{"text":"Our Blog","url":"https://starter.vtex.app"},{"text":"Stores","url":"https://starter.vtex.app"},{"text":"Work With Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"},{"items":[{"text":"Returns and Exchanges","url":"/"},{"text":"Product Recall","url":"/"},{"text":"Gift Cards","url":"/"}],"sectionTitle":"Orders and Purchases"},{"items":[{"text":"Support Center","url":"/"},{"text":"Support \u0026 Services","url":"/"},{"text":"Contact Us","url":"/"}],"sectionTitle":"Support \u0026 Services"},{"items":[{"text":"Affiliate Program","url":"/"},{"text":"Marketplace","url":"/"}],"sectionTitle":"Partnerships"}],"footerSocial":{"title":"Follow Us","socialLinks":[{"icon":{"icon":"Facebook"},"alt":"Facebook","url":"https://www.facebook.com"},{"icon":{"icon":"Instagram"},"alt":"Instagram","url":"https://www.instagram.com"},{"icon":{"icon":"Pinterest"},"alt":"Pinterest","url":"https://www.pinterest.com"},{"icon":{"icon":"Twitter"},"alt":"Twitter","url":"https://www.twitter.com"}]},"logo":{"link":{"title":"FastStore Starter","url":"https://starter.vtex.app/"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png","alt":"Store Logo"},"acceptedPaymentMethods":{"showPaymentMethods":true,"title":"Payment Methods","paymentMethods":[{"icon":{"icon":"Diners"},"alt":"Diners Club"},{"icon":{"icon":"Visa"},"alt":"Visa"},{"icon":{"icon":"Mastercard"},"alt":"Mastercard"},{"icon":{"icon":"EloCard"},"alt":"Elo Card"},{"icon":{"icon":"PayPal"},"alt":"PayPal"},{"icon":{"icon":"GooglePay"},"alt":"GooglePay"},{"icon":{"icon":"ApplePay"},"alt":"Apple Pay"}]},"copyrightInfo":"This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000."}}]}},"__N_SSG":true},"page":"/404","query":{},"buildId":"lMS5jtivFe-LwSHwft4A1","isFallback":false,"gsp":true,"locale":"en-US","locales":["en-US"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>
|