@faststore/core 2.0.151-alpha.0 → 2.0.153-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +44 -44
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/eslint/.cache_1gneedd +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/server-production/0.pack +0 -0
  9. package/.next/cache/webpack/server-production/index.pack +0 -0
  10. package/.next/prerender-manifest.json +1 -1
  11. package/.next/react-loadable-manifest.json +5 -5
  12. package/.next/routes-manifest.json +1 -1
  13. package/.next/server/chunks/104.js +1 -1
  14. package/.next/server/chunks/{746.js → 289.js} +12 -8
  15. package/.next/server/chunks/312.js +35 -8
  16. package/.next/server/chunks/401.js +5 -5
  17. package/.next/server/chunks/74.js +30 -14
  18. package/.next/server/chunks/907.js +433 -353
  19. package/.next/server/middleware-build-manifest.js +1 -1
  20. package/.next/server/middleware-react-loadable-manifest.js +1 -1
  21. package/.next/server/pages/404.js.nft.json +1 -1
  22. package/.next/server/pages/500.js.nft.json +1 -1
  23. package/.next/server/pages/[...slug].js +30 -15
  24. package/.next/server/pages/[...slug].js.nft.json +1 -1
  25. package/.next/server/pages/[slug]/p.js.nft.json +1 -1
  26. package/.next/server/pages/_app.js.nft.json +1 -1
  27. package/.next/server/pages/account.js.nft.json +1 -1
  28. package/.next/server/pages/checkout.js.nft.json +1 -1
  29. package/.next/server/pages/en-US/404.html +2 -2
  30. package/.next/server/pages/en-US/500.html +2 -2
  31. package/.next/server/pages/en-US/account.html +2 -2
  32. package/.next/server/pages/en-US/checkout.html +2 -2
  33. package/.next/server/pages/en-US/login.html +2 -2
  34. package/.next/server/pages/en-US/s.html +2 -2
  35. package/.next/server/pages/en-US/s.json +1 -1
  36. package/.next/server/pages/en-US.html +2 -2
  37. package/.next/server/pages/index.js.nft.json +1 -1
  38. package/.next/server/pages/login.js.nft.json +1 -1
  39. package/.next/server/pages/s.js +30 -14
  40. package/.next/server/pages/s.js.nft.json +1 -1
  41. package/.next/server/pages-manifest.json +5 -5
  42. package/.next/static/Jdc52lXcDWIk2D0wQ-Z4p/_buildManifest.js +1 -0
  43. package/.next/static/chunks/0-0e3914d9fc148f74.js +1 -0
  44. package/.next/static/chunks/{366-4a0572a47e2225d9.js → 366-c0bfd9890048babf.js} +1 -1
  45. package/.next/static/chunks/377-b3616792e1f5f651.js +1 -0
  46. package/.next/static/chunks/495.0ecd099878b2a36d.js +1 -0
  47. package/.next/static/chunks/64.ebbe1d2b40f980c7.js +1 -0
  48. package/.next/static/chunks/pages/{[...slug]-3c749c7d8561eb90.js → [...slug]-bd1885159f7dfbba.js} +1 -1
  49. package/.next/static/chunks/pages/s-1cbe740b5b781d28.js +1 -0
  50. package/.next/static/chunks/webpack-eb5ed34c93d07fac.js +1 -0
  51. package/.next/static/css/{2e9de35e0cb999e0.css → 1323734429a8aa40.css} +1 -1
  52. package/.next/static/css/7d822a137c54a781.css +1 -0
  53. package/.next/static/css/a0feab89b7648c5c.css +1 -0
  54. package/.next/static/css/a13a9f9cd349d906.css +1 -0
  55. package/.next/static/css/a45618030b16a245.css +1 -0
  56. package/.next/static/css/bde408cc006e64f8.css +1 -0
  57. package/.next/static/css/d462d9478ce00021.css +1 -0
  58. package/.next/trace +69 -69
  59. package/.turbo/turbo-build.log +6 -6
  60. package/CHANGELOG.md +12 -0
  61. package/cms/faststore/content-types.json +96 -2
  62. package/cms/faststore/sections.json +176 -0
  63. package/package.json +4 -4
  64. package/src/components/navigation/Navbar/Navbar.tsx +14 -8
  65. package/src/components/product/ProductGrid/ProductGrid.tsx +8 -3
  66. package/src/components/search/Filter/Filter.tsx +22 -3
  67. package/src/components/search/Filter/FilterSlider.tsx +14 -4
  68. package/src/components/search/SearchDropdown/SearchDropdown.tsx +17 -7
  69. package/src/components/search/SearchInput/SearchInput.tsx +10 -5
  70. package/src/components/search/SearchTop/SearchTop.tsx +17 -3
  71. package/src/components/search/Sort/Sort.tsx +21 -3
  72. package/src/components/sections/Navbar/Navbar.tsx +5 -0
  73. package/src/components/sections/ProductGallery/ProductGallery.tsx +44 -154
  74. package/src/components/ui/ProductGallery/ProductGallery.tsx +220 -0
  75. package/src/components/{sections → ui}/ProductGallery/ProductGalleryPage.tsx +9 -2
  76. package/src/components/ui/ProductGallery/index.ts +1 -0
  77. package/src/pages/[...slug].tsx +34 -17
  78. package/src/pages/s.tsx +38 -13
  79. package/src/sdk/search/formatSearchPath.ts +8 -1
  80. package/src/server/cms.ts +11 -2
  81. package/.next/static/SPkTG9-gxU2UejLG7FvOw/_buildManifest.js +0 -1
  82. package/.next/static/chunks/170.c17ce564bb568265.js +0 -1
  83. package/.next/static/chunks/327-43715af4f3fffaf6.js +0 -1
  84. package/.next/static/chunks/377-61e89c711b136605.js +0 -1
  85. package/.next/static/chunks/495.8ffebac98e9475dc.js +0 -1
  86. package/.next/static/chunks/pages/s-890c0c4b88484224.js +0 -1
  87. package/.next/static/chunks/webpack-5051dce9659282f3.js +0 -1
  88. package/.next/static/css/1de3e7b6ba8daaac.css +0 -1
  89. package/.next/static/css/43b1b3821e21630c.css +0 -1
  90. package/.next/static/css/48af598df5fe042d.css +0 -1
  91. package/.next/static/css/923c4a942e57bc91.css +0 -1
  92. package/.next/static/css/e434797816e17065.css +0 -1
  93. package/.next/static/css/e7a6f3559cf45c62.css +0 -1
  94. package/src/stories/brandless.stories.mdx +0 -87
  95. package/src/stories/changelog-template.stories.mdx +0 -10
  96. package/src/stories/colors.stories.mdx +0 -306
  97. package/src/stories/customizing.stories.mdx +0 -113
  98. package/src/stories/getting-started.stories.mdx +0 -68
  99. package/src/stories/grid-layout.stories.mdx +0 -53
  100. package/src/stories/icons.stories.mdx +0 -237
  101. package/src/stories/interactive-controls.stories.mdx +0 -50
  102. package/src/stories/midnight.stories.mdx +0 -56
  103. package/src/stories/refinements.stories.mdx +0 -96
  104. package/src/stories/soft-blue.stories.mdx +0 -56
  105. package/src/stories/spacing.stories.mdx +0 -38
  106. package/src/stories/typography.stories.mdx +0 -224
  107. /package/.next/static/{SPkTG9-gxU2UejLG7FvOw → Jdc52lXcDWIk2D0wQ-Z4p}/_ssgManifest.js +0 -0
  108. /package/src/components/{sections → ui}/ProductGallery/useDelayedFacets.ts +0 -0
  109. /package/src/components/{sections → ui}/ProductGallery/useDelayedPagination.ts +0 -0
  110. /package/src/components/{sections → ui}/ProductGallery/usePageProducts.ts +0 -0
@@ -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>!(function(w,p,f,c){c=w[p]=w[p]||{};c[f]=(c[f]||[]).concat(["dataLayer.push","sendrc"])})(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/923c4a942e57bc91.css" as="style"/><link rel="stylesheet" href="/_next/static/css/923c4a942e57bc91.css" data-n-g=""/><link rel="preload" href="/_next/static/css/e7a6f3559cf45c62.css" as="style"/><link rel="stylesheet" href="/_next/static/css/e7a6f3559cf45c62.css" data-n-p=""/><link rel="preload" href="/_next/static/css/e434797816e17065.css" as="style"/><link rel="stylesheet" href="/_next/static/css/e434797816e17065.css" data-n-p=""/><link rel="preload" href="/_next/static/css/13a4da555ff5e3be.css" as="style"/><link rel="stylesheet" href="/_next/static/css/13a4da555ff5e3be.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-5051dce9659282f3.js" defer=""></script><script src="/_next/static/chunks/framework-dfd14d7ce6600b03.js" defer=""></script><script src="/_next/static/chunks/main-fd466221927468fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-3e4e7e579cb0681a.js" defer=""></script><script src="/_next/static/chunks/391-47b923ef44945418.js" defer=""></script><script src="/_next/static/chunks/545-1d3d08edfd2ee4c6.js" defer=""></script><script src="/_next/static/chunks/377-61e89c711b136605.js" defer=""></script><script src="/_next/static/chunks/366-4a0572a47e2225d9.js" defer=""></script><script src="/_next/static/chunks/pages/index-49b7ee570f7cc4b7.js" defer=""></script><script src="/_next/static/SPkTG9-gxU2UejLG7FvOw/_buildManifest.js" defer=""></script><script src="/_next/static/SPkTG9-gxU2UejLG7FvOw/_ssgManifest.js" defer=""></script></head><body class="theme"><div id="__next"><style>
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/bde408cc006e64f8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/bde408cc006e64f8.css" data-n-g=""/><link rel="preload" href="/_next/static/css/a13a9f9cd349d906.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a13a9f9cd349d906.css" data-n-p=""/><link rel="preload" href="/_next/static/css/a45618030b16a245.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a45618030b16a245.css" data-n-p=""/><link rel="preload" href="/_next/static/css/13a4da555ff5e3be.css" as="style"/><link rel="stylesheet" href="/_next/static/css/13a4da555ff5e3be.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-eb5ed34c93d07fac.js" defer=""></script><script src="/_next/static/chunks/framework-dfd14d7ce6600b03.js" defer=""></script><script src="/_next/static/chunks/main-fd466221927468fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-3e4e7e579cb0681a.js" defer=""></script><script src="/_next/static/chunks/391-47b923ef44945418.js" defer=""></script><script src="/_next/static/chunks/545-1d3d08edfd2ee4c6.js" defer=""></script><script src="/_next/static/chunks/377-b3616792e1f5f651.js" defer=""></script><script src="/_next/static/chunks/366-c0bfd9890048babf.js" defer=""></script><script src="/_next/static/chunks/pages/index-49b7ee570f7cc4b7.js" defer=""></script><script src="/_next/static/Jdc52lXcDWIk2D0wQ-Z4p/_buildManifest.js" defer=""></script><script src="/_next/static/Jdc52lXcDWIk2D0wQ-Z4p/_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-testid="fs-alert" data-fs-alert-dismissible="true"><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 10% off today: NEW10!</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><header class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" data-testid="fs-navbar" data-fs-navbar-scroll=""><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-testid="fs-navbar-row" class="layout__content"><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" aria-label="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="" 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?orderFormId=" 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 class="layout__content"><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 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></header><main><section class="section section_section__qqZcd section-region-bar"><div data-fs-region-bar="true" class="display-mobile"><button data-fs-button="true" data-fs-button-size="regular" 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"><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"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><section class="section section_section__WY2pp section-hero"><article data-fs-hero="true" data-fs-hero-variant="primary" data-fs-hero-color-variant="main" data-testid="fs-hero"><div data-fs-hero-image="true" data-testid="fs-hero-image"><img data-fs-image="true" alt="technology banner" sizes="(max-width: 360px) 50vw, (max-width: 768px) 90vw, 50vw" srcSet="https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg" width="360" height="240" decoding="async" data-nimg="future" loading="eager" style="color:transparent"/></div><header data-fs-hero-heading="true" data-testid="fs-hero-heading"><div data-fs-hero-wrapper="true" class="layout__content"><div data-fs-hero-info="true"><h1 data-fs-hero-title="true">20% off on first purchase</h1><p data-fs-hero-subtitle="true">At FastStore you can shop the best tech of 2023. Enjoy and get 10% off on your first purchase!</p><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="primary" data-fs-button-inverse="true" data-testid="fs-link-button" href="/technology"><div data-fs-button-wrapper="true"><span>See</span><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#ArrowRight"></use></svg></span></div></a></div></div></header></article></section><section class="section section_section__rUfAR section-incentives"><div data-fs-incentives="true" data-fs-incentives-colored="true" data-fs-incentives-variant="horizontal"><ul data-fs-list="true" data-testid="fs-list" class="layout__content"><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Truck"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Buy online</p><span data-fs-incentive-description="true">Get Free Shipping</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Calendar"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Free return</p><span data-fs-incentive-description="true">30 days to return</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Gift"><use href="/icons.svg#Gift"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Gift cards</p><span data-fs-incentive-description="true">$20/$30/$40</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Store Front"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Physical Stores</p><span data-fs-incentive-description="true">+40 Stores in Brazil</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Shield Check"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Buy online</p><span data-fs-incentive-description="true">Get Free Shipping</span></div></div></li></ul></div></section><section class="section section_section__C1DoH section-product-shelf layout__section "><h2 class="text__title-section layout__content">Most Wanted</h2><div data-fs-product-shelf="true" data-testid="fs-product-shelf" data-fs-product-shelf-skeleton="true"><ul data-fs-product-shelf-items="true" data-testid="fs-product-shelf-items" class="layout__content"><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li></ul></div></section><section class="section section_section__hGuvG section-product-tiles layout__section layout__content"><h2 class="text__title-section">Just Arrived!</h2><div><ul data-fs-tiles="true" data-fs-tiles-variant="expanded-first" data-testid="store-tiles"><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="1"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="1" style="--fs-product-tile-skeleton-image-aspect-ratio:1.6666666666666667"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="1"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="1"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="2"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="2" style="--fs-product-tile-skeleton-image-aspect-ratio:0.75"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="2"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="2"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="2"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="3"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="3" style="--fs-product-tile-skeleton-image-aspect-ratio:0.75"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="3"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="3"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="3"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li></ul></div></section><section class="section section_section__ivuGF section-banner layout__section"><article data-fs-banner="vertical" data-testid="store-banner" data-fs-banner-text="true" data-fs-banner-text-variant="primary" data-fs-banner-text-color-variant="light"><div data-banner-content="true" data-testid="store-banner-content" data-fs-banner-text-content="true" class="layout__content"><div data-fs-banner-text-heading="true" data-fs-banner-text-color-variant="light"><h2>The sun has set out Summer Sale! Save up to 50% off. Don&#x27;t miss out!</h2></div><div data-banner-link="true" data-testid="store-banner-link" data-fs-banner-text-link="true"><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="primary" data-fs-button-inverse="false" data-testid="fs-link-button" href="/office"><div data-fs-button-wrapper="true"><span>Check it out now!</span></div></a></div></div></article></section><section class="section section_section__C1DoH section-product-shelf layout__section "><h2 class="text__title-section layout__content">&quot;Deals &amp; Promotions&quot;</h2><div data-fs-product-shelf="true" data-testid="fs-product-shelf" data-fs-product-shelf-skeleton="true"><ul data-fs-product-shelf-items="true" data-testid="fs-product-shelf-items" class="layout__content"><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li></ul></div></section><section class="section section_section__kRRBW section-newsletter"><div data-fs-newsletter=""><form data-fs-newsletter-form="true" icon="[object Object]" emailInputLabel="Your Email" nameInputLabel="Your Name" subscribeButtonLabel="Subscribe" email-input-label="Your Email" name-input-label="Your Name" subscribe-button-label="Subscribe" class="layout__content"><header data-fs-newsletter-header="true"><h3><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#Envelop"></use></svg>Get News and Special Offers!</h3><span> <!-- -->Receive our news and promotions in advance. Enjoy and get 10% off your first purchase. For more information click here.</span></header><div data-fs-newsletter-controls="true"><div data-fs-input-field="true" data-testid="fs-input-field"><input data-fs-input="true" data-testid="fs-input" id="newsletter-name" type="text" placeholder=" " required=""/><label data-fs-label="true" data-testid="fs-label" for="newsletter-name">Your Name</label></div><div data-fs-input-field="true" data-testid="fs-input-field"><input data-fs-input="true" data-testid="fs-input" id="newsletter-email" type="email" placeholder=" " required=""/><label data-fs-label="true" data-testid="fs-label" for="newsletter-email">Your Email</label></div><span data-fs-newsletter-addendum="true">By subscribing to our newsletter you agree to to our<!-- --> <a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-inverse="true" data-fs-link-size="regular" data-testid="fs-link" href="/">Privacy Policy.</a></span><button data-fs-button="true" data-fs-button-inverse="true" data-fs-button-size="regular" data-fs-button-variant="secondary" data-testid="fs-button" type="submit"><div data-fs-button-wrapper="true"><span>Loading...</span></div></button></div></form></div></section></main><section class="section section_section__Ox_hX section-footer"><div data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true" class="layout__content-full"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul data-fs-list="true" data-testid="fs-list" class="layout__content"><li><div data-fs-incentive="true" data-testid="store-incentive"><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">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><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">Quality</span><span data-fs-incentive-description="true">Products</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><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></ul></div><div data-fs-footer-navigation="true" class="layout__content"><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-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 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></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 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></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul 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" class="layout__content"><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><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul 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></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p></p></div></div></div></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"page":{"id":"bd9e01c6-534e-4e54-aa76-f864dcbad024","name":"Home","type":"page","status":"published","versionId":"dfa86048-f354-11ed-83ab-122449db511d","versionStatus":"published","sections":[{"id":"1666117510381","name":"Hero","data":{"link":{"0":"/","1":"t","2":"e","3":"c","4":"h","5":"n","6":"o","7":"l","8":"o","9":"g","10":"y","text":"See","url":"/technology"},"image":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg","alt":"technology banner"},"title":"20% off on first purchase","subtitle":"At FastStore you can shop the best tech of 2023. Enjoy and get 10% off on your first purchase!","linkText":"See ","imageAlt":"office","imageSrc":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/17555ae3-3405-4be6-a19a-e76997a333ea___1fa52ed2b11886ffe215bab9588c345d.jpg","colorVariant":"main","variant":"primary"}},{"id":"1684175260112","name":"Incentives","data":{"incentives":[{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"Truck","alt":"Truck"},{"title":"Free return","firstLineText":"30 days to return","icon":"Calendar","alt":"Calendar"},{"title":"Gift cards","firstLineText":"$20/$30/$40","icon":"Gift","alt":"Gift"},{"title":"Physical Stores","firstLineText":"+40 Stores in Brazil","icon":"Storefront","alt":"Store Front"},{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"ShieldCheck","alt":"Shield Check"}]}},{"id":"1680200878993","name":"CallToAction","data":{"title":"Clique Aqui","link":"https://vtex.com"}},{"id":"1666117621106","name":"IncentivesHeader","data":{"incentives":[{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"Truck"},{"title":"Free return","firstLineText":"30 days to return","icon":"Calendar"},{"title":"Gift cards","firstLineText":"$20/$30/$40","icon":"Gift"},{"title":"Physical Stores","firstLineText":"+40 Stores in Brazil","icon":"Storefront"},{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"ShieldCheck"}]}},{"id":"1666117582907","name":"ProductShelf","data":{"first":5,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"140"}],"productCardConfiguration":{"showDiscountBadge":true,"showBuyButton":true,"buyButtonTitle":"Buy"},"product-card-configuration":{"show-discount-badge":true,"show-buy-button":true,"buy-button-title":"Buy"},"title":"Most Wanted"}},{"id":"1666117593431","name":"ProductTiles","data":{"first":3,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"142"}],"title":"Just Arrived!"}},{"id":"1666117962631","name":"BannerText","data":{"link":{"text":"Check it out now!","url":"/office"},"actionLabel":"Check it out now!","actionPath":"/office","caption":"Enjoy and get 10% off on your first purchase!!","title":"The sun has set out Summer Sale! Save up to 50% off. Don't miss out!","colorVariant":"light","variant":"primary"}},{"id":"1666117906636","name":"ProductShelf","data":{"first":5,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"142"}],"productCardConfiguration":{"showDiscountBadge":true,"showBuyButton":true,"buyButtonTitle":"Buy"},"product-card-configuration":{"show-discount-badge":true,"show-buy-button":true,"buy-button-title":"Buy"},"title":"\"Deals \u0026 Promotions\""}},{"id":"1666294301813","name":"Newsletter","data":{"icon":{"alt":"Envelop"},"title":"Get News and Special Offers!","description":"Receive our news and promotions in advance. Enjoy and get 10% off your first purchase. For more information click here.","emailInputLabel":"Your Email","displayNameInput":true,"nameInputLabel":"Your Name","subscribeButtonLabel":"Subscribe","email-input-label":"Your Email","display-name-input":true,"name-input-label":"Your Name","subscribe-button-label":"Subscribe"}}],"settings":{"seo":{"slug":"/","title":"FastStore","description":"A beautifuly designed store"}}},"globalSections":{"sections":[{"id":"1681925481186","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 10% off today: NEW10!"}},{"id":"1684246619463","name":"Navbar","data":{"logo":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"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":"1682000013636","name":"Children","data":{}},{"id":"1683576659989","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"Truck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Quality","icon":"ShieldCheck","secondLineText":"Products"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"}],"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":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.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"}]}}}]}},"__N_SSG":true},"page":"/","query":{},"buildId":"SPkTG9-gxU2UejLG7FvOw","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-testid="fs-alert" data-fs-alert-dismissible="true"><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 10% off today: NEW10!</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><header class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" data-testid="fs-navbar" data-fs-navbar-scroll=""><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-testid="fs-navbar-row" class="layout__content"><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" aria-label="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="" 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?orderFormId=" 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 class="layout__content"><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 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></header><main><section class="section section_section__qqZcd section-region-bar"><div data-fs-region-bar="true" class="display-mobile"><button data-fs-button="true" data-fs-button-size="regular" 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"><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"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><section class="section section_section__WY2pp section-hero"><article data-fs-hero="true" data-fs-hero-variant="primary" data-fs-hero-color-variant="main" data-testid="fs-hero"><div data-fs-hero-image="true" data-testid="fs-hero-image"><img data-fs-image="true" alt="technology banner" sizes="(max-width: 360px) 50vw, (max-width: 768px) 90vw, 50vw" srcSet="https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2F1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg" width="360" height="240" decoding="async" data-nimg="future" loading="eager" style="color:transparent"/></div><header data-fs-hero-heading="true" data-testid="fs-hero-heading"><div data-fs-hero-wrapper="true" class="layout__content"><div data-fs-hero-info="true"><h1 data-fs-hero-title="true">20% off on first purchase</h1><p data-fs-hero-subtitle="true">At FastStore you can shop the best tech of 2023. Enjoy and get 10% off on your first purchase!</p><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="primary" data-fs-button-inverse="true" data-testid="fs-link-button" href="/technology"><div data-fs-button-wrapper="true"><span>See</span><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#ArrowRight"></use></svg></span></div></a></div></div></header></article></section><section class="section section_section__rUfAR section-incentives"><div data-fs-incentives="true" data-fs-incentives-colored="true" data-fs-incentives-variant="horizontal"><ul data-fs-list="true" data-testid="fs-list" class="layout__content"><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Truck"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Buy online</p><span data-fs-incentive-description="true">Get Free Shipping</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Calendar"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Free return</p><span data-fs-incentive-description="true">30 days to return</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Gift"><use href="/icons.svg#Gift"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Gift cards</p><span data-fs-incentive-description="true">$20/$30/$40</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Store Front"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Physical Stores</p><span data-fs-incentive-description="true">+40 Stores in Brazil</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true" aria-label="Shield Check"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true">Buy online</p><span data-fs-incentive-description="true">Get Free Shipping</span></div></div></li></ul></div></section><section class="section section_section__C1DoH section-product-shelf layout__section "><h2 class="text__title-section layout__content">Most Wanted</h2><div data-fs-product-shelf="true" data-testid="fs-product-shelf" data-fs-product-shelf-skeleton="true"><ul data-fs-product-shelf-items="true" data-testid="fs-product-shelf-items" class="layout__content"><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li></ul></div></section><section class="section section_section__hGuvG section-product-tiles layout__section layout__content"><h2 class="text__title-section">Just Arrived!</h2><div><ul data-fs-tiles="true" data-fs-tiles-variant="expanded-first" data-testid="store-tiles"><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="1"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="1" style="--fs-product-tile-skeleton-image-aspect-ratio:1.6666666666666667"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="1"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="1"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="2"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="2" style="--fs-product-tile-skeleton-image-aspect-ratio:0.75"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="2"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="2"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="2"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li><li data-fs-tile="true" data-testid="store-tile"><div data-fs-product-tile-skeleton="true" data-fs-product-tile-skeleton-index="3"><div data-fs-product-tile-skeleton-image="true" data-fs-product-tile-skeleton-index="3" style="--fs-product-tile-skeleton-image-aspect-ratio:0.75"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:auto;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-content="true" data-fs-product-tile-skeleton-index="3"><div data-fs-product-tile-skeleton-heading="true"><div data-fs-product-tile-skeleton-text="true" data-fs-product-tile-skeleton-index="3"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-tile-skeleton-price="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:60%;height:1.5rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div><div data-fs-product-tile-skeleton-badge="true" data-fs-product-tile-skeleton-index="3"><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem"><div data-fs-skeleton-shimmer="true"></div></div></div></div></div></li></ul></div></section><section class="section section_section__ivuGF section-banner layout__section"><article data-fs-banner="vertical" data-testid="store-banner" data-fs-banner-text="true" data-fs-banner-text-variant="primary" data-fs-banner-text-color-variant="light"><div data-banner-content="true" data-testid="store-banner-content" data-fs-banner-text-content="true" class="layout__content"><div data-fs-banner-text-heading="true" data-fs-banner-text-color-variant="light"><h2>The sun has set out Summer Sale! Save up to 50% off. Don&#x27;t miss out!</h2></div><div data-banner-link="true" data-testid="store-banner-link" data-fs-banner-text-link="true"><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="primary" data-fs-button-inverse="false" data-testid="fs-link-button" href="/office"><div data-fs-button-wrapper="true"><span>Check it out now!</span></div></a></div></div></article></section><section class="section section_section__C1DoH section-product-shelf layout__section "><h2 class="text__title-section layout__content">&quot;Deals &amp; Promotions&quot;</h2><div data-fs-product-shelf="true" data-testid="fs-product-shelf" data-fs-product-shelf-skeleton="true"><ul data-fs-product-shelf-items="true" data-testid="fs-product-shelf-items" class="layout__content"><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li><li data-fs-product-shelf-item="true" data-testid="fs-product-shelf-item"><div data-fs-product-card-skeleton="true" data-fs-product-card-skeleton-variant="default" data-fs-product-card-skeleton-bordered="true" data-fs-product-card-skeleton-sectioned="true"><div data-fs-product-card-skeleton-image="true" style="--fs-product-card-skeleton-image-aspect-ratio:1"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:100%;height:100%"><div data-fs-skeleton-shimmer="true"></div></div></div><div data-fs-product-card-skeleton-content="true"><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:90%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" style="width:70%;height:1.5rem" data-fs-product-card-skeleton-text="true"><div data-fs-skeleton-shimmer="true"></div></div><div data-fs-skeleton="true" data-testid="fs-skeleton" data-fs-skeleton-border="pill" style="width:6rem;height:2rem" data-fs-product-card-skeleton-badge="true"><div data-fs-skeleton-shimmer="true"></div></div></div></div></li></ul></div></section><section class="section section_section__kRRBW section-newsletter"><div data-fs-newsletter=""><form data-fs-newsletter-form="true" icon="[object Object]" emailInputLabel="Your Email" nameInputLabel="Your Name" subscribeButtonLabel="Subscribe" email-input-label="Your Email" name-input-label="Your Name" subscribe-button-label="Subscribe" class="layout__content"><header data-fs-newsletter-header="true"><h3><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#Envelop"></use></svg>Get News and Special Offers!</h3><span> <!-- -->Receive our news and promotions in advance. Enjoy and get 10% off your first purchase. For more information click here.</span></header><div data-fs-newsletter-controls="true"><div data-fs-input-field="true" data-testid="fs-input-field"><input data-fs-input="true" data-testid="fs-input" id="newsletter-name" type="text" placeholder=" " required=""/><label data-fs-label="true" data-testid="fs-label" for="newsletter-name">Your Name</label></div><div data-fs-input-field="true" data-testid="fs-input-field"><input data-fs-input="true" data-testid="fs-input" id="newsletter-email" type="email" placeholder=" " required=""/><label data-fs-label="true" data-testid="fs-label" for="newsletter-email">Your Email</label></div><span data-fs-newsletter-addendum="true">By subscribing to our newsletter you agree to to our<!-- --> <a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-inverse="true" data-fs-link-size="regular" data-testid="fs-link" href="/">Privacy Policy.</a></span><button data-fs-button="true" data-fs-button-inverse="true" data-fs-button-size="regular" data-fs-button-variant="secondary" data-testid="fs-button" type="submit"><div data-fs-button-wrapper="true"><span>Loading...</span></div></button></div></form></div></section></main><section class="section section_section__Ox_hX section-footer"><div data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true" class="layout__content-full"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul data-fs-list="true" data-testid="fs-list" class="layout__content"><li><div data-fs-incentive="true" data-testid="store-incentive"><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">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><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">Quality</span><span data-fs-incentive-description="true">Products</span></div></div></li><li><div data-fs-incentive="true" data-testid="store-incentive"><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></ul></div><div data-fs-footer-navigation="true" class="layout__content"><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-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 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></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 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></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul 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" class="layout__content"><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><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul 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></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p></p></div></div></div></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"page":{"id":"bd9e01c6-534e-4e54-aa76-f864dcbad024","name":"Home","type":"page","status":"published","versionId":"dfa86048-f354-11ed-83ab-122449db511d","versionStatus":"published","sections":[{"id":"1666117510381","name":"Hero","data":{"link":{"0":"/","1":"t","2":"e","3":"c","4":"h","5":"n","6":"o","7":"l","8":"o","9":"g","10":"y","text":"See","url":"/technology"},"image":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/1e46eee3-5cd9-4911-8a81-501fe9c744fe___57d4662d50c07e760e6e74d8da282508.jpg","alt":"technology banner"},"title":"20% off on first purchase","subtitle":"At FastStore you can shop the best tech of 2023. Enjoy and get 10% off on your first purchase!","linkText":"See ","imageAlt":"office","imageSrc":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/17555ae3-3405-4be6-a19a-e76997a333ea___1fa52ed2b11886ffe215bab9588c345d.jpg","colorVariant":"main","variant":"primary"}},{"id":"1684175260112","name":"Incentives","data":{"incentives":[{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"Truck","alt":"Truck"},{"title":"Free return","firstLineText":"30 days to return","icon":"Calendar","alt":"Calendar"},{"title":"Gift cards","firstLineText":"$20/$30/$40","icon":"Gift","alt":"Gift"},{"title":"Physical Stores","firstLineText":"+40 Stores in Brazil","icon":"Storefront","alt":"Store Front"},{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"ShieldCheck","alt":"Shield Check"}]}},{"id":"1680200878993","name":"CallToAction","data":{"title":"Clique Aqui","link":"https://vtex.com"}},{"id":"1666117621106","name":"IncentivesHeader","data":{"incentives":[{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"Truck"},{"title":"Free return","firstLineText":"30 days to return","icon":"Calendar"},{"title":"Gift cards","firstLineText":"$20/$30/$40","icon":"Gift"},{"title":"Physical Stores","firstLineText":"+40 Stores in Brazil","icon":"Storefront"},{"title":"Buy online","firstLineText":"Get Free Shipping","icon":"ShieldCheck"}]}},{"id":"1666117582907","name":"ProductShelf","data":{"first":5,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"140"}],"productCardConfiguration":{"showDiscountBadge":true,"showBuyButton":true,"buyButtonTitle":"Buy"},"product-card-configuration":{"show-discount-badge":true,"show-buy-button":true,"buy-button-title":"Buy"},"title":"Most Wanted"}},{"id":"1666117593431","name":"ProductTiles","data":{"first":3,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"142"}],"title":"Just Arrived!"}},{"id":"1666117962631","name":"BannerText","data":{"link":{"text":"Check it out now!","url":"/office"},"actionLabel":"Check it out now!","actionPath":"/office","caption":"Enjoy and get 10% off on your first purchase!!","title":"The sun has set out Summer Sale! Save up to 50% off. Don't miss out!","colorVariant":"light","variant":"primary"}},{"id":"1666117906636","name":"ProductShelf","data":{"first":5,"after":"0","sort":"score_desc","selectedFacets":[{"key":"productClusterIds","value":"142"}],"productCardConfiguration":{"showDiscountBadge":true,"showBuyButton":true,"buyButtonTitle":"Buy"},"product-card-configuration":{"show-discount-badge":true,"show-buy-button":true,"buy-button-title":"Buy"},"title":"\"Deals \u0026 Promotions\""}},{"id":"1666294301813","name":"Newsletter","data":{"icon":{"alt":"Envelop"},"title":"Get News and Special Offers!","description":"Receive our news and promotions in advance. Enjoy and get 10% off your first purchase. For more information click here.","emailInputLabel":"Your Email","displayNameInput":true,"nameInputLabel":"Your Name","subscribeButtonLabel":"Subscribe","email-input-label":"Your Email","display-name-input":true,"name-input-label":"Your Name","subscribe-button-label":"Subscribe"}}],"settings":{"seo":{"slug":"/","title":"FastStore","description":"A beautifuly designed store"}}},"globalSections":{"sections":[{"id":"1681925481186","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 10% off today: NEW10!"}},{"id":"1684246619463","name":"Navbar","data":{"logo":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"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":"1682000013636","name":"Children","data":{}},{"id":"1683576659989","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"Truck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Quality","icon":"ShieldCheck","secondLineText":"Products"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"}],"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":{"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.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"}]}}}]}},"__N_SSG":true},"page":"/","query":{},"buildId":"Jdc52lXcDWIk2D0wQ-Z4p","isFallback":false,"gsp":true,"locale":"en-US","locales":["en-US"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>
@@ -1 +1 @@
1
- {"version":1,"files":["../webpack-runtime.js","../chunks/608.js","../chunks/676.js","../chunks/664.js","../chunks/336.js","../chunks/183.js","../chunks/644.js","../chunks/886.js","../chunks/74.js","../chunks/247.js","../chunks/287.js","../chunks/854.js","../chunks/280.js","../chunks/368.js","../chunks/104.js","../chunks/82.js","../chunks/557.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/@faststore/graphql-utils/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/chalk/source/index.js","../../../node_modules/@faststore/graphql-utils/dist/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/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.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/search/SearchDropdown/index.ts","../../../package.json"]}
1
+ {"version":1,"files":["../webpack-runtime.js","../chunks/608.js","../chunks/676.js","../chunks/664.js","../chunks/336.js","../chunks/183.js","../chunks/644.js","../chunks/886.js","../chunks/74.js","../chunks/247.js","../chunks/287.js","../chunks/854.js","../chunks/280.js","../chunks/368.js","../chunks/104.js","../chunks/82.js","../chunks/557.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/@faststore/graphql-utils/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/chalk/source/index.js","../../../node_modules/@faststore/graphql-utils/dist/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/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.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/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.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/search/SearchDropdown/index.ts","../../../package.json"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../webpack-runtime.js","../chunks/608.js","../chunks/676.js","../chunks/664.js","../chunks/336.js","../chunks/183.js","../chunks/644.js","../chunks/886.js","../chunks/74.js","../chunks/701.js","../chunks/247.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/@faststore/graphql-utils/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/chalk/source/index.js","../../../node_modules/@faststore/graphql-utils/dist/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/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.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/search/SearchDropdown/index.ts","../../../package.json"]}
1
+ {"version":1,"files":["../webpack-runtime.js","../chunks/608.js","../chunks/676.js","../chunks/664.js","../chunks/336.js","../chunks/183.js","../chunks/644.js","../chunks/886.js","../chunks/74.js","../chunks/701.js","../chunks/247.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/@faststore/graphql-utils/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/chalk/source/index.js","../../../node_modules/@faststore/graphql-utils/dist/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/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.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/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.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/search/SearchDropdown/index.ts","../../../package.json"]}
@@ -24,7 +24,7 @@ __webpack_require__.r(__webpack_exports__);
24
24
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6689);
25
25
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__);
26
26
  /* harmony import */ var src_components_sections_Breadcrumb__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(2874);
27
- /* harmony import */ var src_components_sections_ProductGallery__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(2618);
27
+ /* harmony import */ var src_components_sections_ProductGallery__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7873);
28
28
  /* harmony import */ var src_constants__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(8459);
29
29
  /* harmony import */ var src_customizations_components__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(859);
30
30
  /* harmony import */ var src_sdk_search_state__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(1523);
@@ -68,10 +68,13 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
68
68
 
69
69
 
70
70
  const COMPONENTS = _objectSpread({
71
- Breadcrumb: src_components_sections_Breadcrumb__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z
71
+ Breadcrumb: src_components_sections_Breadcrumb__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z,
72
+ ProductGallery: src_components_sections_ProductGallery__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z
72
73
  }, src_customizations_components__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z);
73
74
 
74
- const useSearchParams = () => {
75
+ const useSearchParams = ({
76
+ sort: defaultSort
77
+ }) => {
75
78
  const {
76
79
  0: params,
77
80
  1: setParams
@@ -81,16 +84,27 @@ const useSearchParams = () => {
81
84
  } = (0,next_router__WEBPACK_IMPORTED_MODULE_1__.useRouter)();
82
85
  (0,react__WEBPACK_IMPORTED_MODULE_2__.useEffect)(() => {
83
86
  const url = new URL(asPath, 'http://localhost');
87
+ const shouldUpdateDefaultSort = defaultSort && !url.searchParams.has('sort');
88
+
89
+ if (shouldUpdateDefaultSort) {
90
+ url.searchParams.set('sort', defaultSort);
91
+ }
92
+
84
93
  setParams((0,_faststore_sdk__WEBPACK_IMPORTED_MODULE_13__/* .parse */ .Q)(url));
85
- }, [asPath]);
94
+ }, [asPath, defaultSort]);
86
95
  return params;
87
96
  };
88
97
 
89
98
  function Page({
90
- sections,
99
+ page: {
100
+ sections,
101
+ settings
102
+ },
91
103
  globalSections
92
104
  }) {
93
- const searchParams = useSearchParams();
105
+ const searchParams = useSearchParams({
106
+ sort: settings?.productGallery?.sortBySelection
107
+ });
94
108
  const applySearchState = (0,src_sdk_search_state__WEBPACK_IMPORTED_MODULE_6__/* .useApplySearchState */ .j)();
95
109
  const title = 'Search Results';
96
110
  const {
@@ -105,7 +119,7 @@ function Page({
105
119
  return /*#__PURE__*/react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx(src_components_cms_GlobalSections__WEBPACK_IMPORTED_MODULE_8__/* ["default"] */ .ZP, _objectSpread(_objectSpread({}, globalSections), {}, {
106
120
  children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsxs)(_faststore_sdk__WEBPACK_IMPORTED_MODULE_14__/* .Provider */ .z, _objectSpread(_objectSpread({
107
121
  onChange: applySearchState,
108
- itemsPerPage: src_constants__WEBPACK_IMPORTED_MODULE_15__/* .ITEMS_PER_PAGE */ .g
122
+ itemsPerPage: settings?.productGallery?.itemsPerPage ?? src_constants__WEBPACK_IMPORTED_MODULE_15__/* .ITEMS_PER_PAGE */ .g
109
123
  }, searchParams), {}, {
110
124
  children: [/*#__PURE__*/react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx(next_seo__WEBPACK_IMPORTED_MODULE_0__.NextSeo, {
111
125
  noindex: true,
@@ -122,10 +136,11 @@ function Page({
122
136
  text: title
123
137
  }), /*#__PURE__*/react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx(src_components_cms_RenderSections__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z, {
124
138
  sections: sections,
125
- components: COMPONENTS
126
- }), /*#__PURE__*/react_jsx_runtime__WEBPACK_IMPORTED_MODULE_12__.jsx(src_components_sections_ProductGallery__WEBPACK_IMPORTED_MODULE_4__/* ["default"] */ .Z, {
127
- title: "Search Results",
128
- searchTerm: searchParams.term ?? undefined
139
+ components: COMPONENTS,
140
+ context: {
141
+ title,
142
+ searchTerm: searchParams.term ?? undefined
143
+ }
129
144
  })]
130
145
  }))
131
146
  }));
@@ -134,13 +149,14 @@ function Page({
134
149
  const getStaticProps = async ({
135
150
  previewData
136
151
  }) => {
137
- const [cmsPage, globalSections] = await Promise.all([(0,src_server_cms__WEBPACK_IMPORTED_MODULE_10__/* .getPage */ .f)(_objectSpread(_objectSpread({}, previewData?.contentType === 'search' ? previewData : null), {}, {
152
+ const [page, globalSections] = await Promise.all([(0,src_server_cms__WEBPACK_IMPORTED_MODULE_10__/* .getPage */ .f)(_objectSpread(_objectSpread({}, previewData?.contentType === 'search' ? previewData : null), {}, {
138
153
  contentType: 'search'
139
154
  })), (0,src_components_cms_GlobalSections__WEBPACK_IMPORTED_MODULE_8__/* .getGlobalSectionsData */ .Tc)(previewData)]);
140
155
  return {
141
- props: _objectSpread(_objectSpread({}, cmsPage), {}, {
156
+ props: {
157
+ page,
142
158
  globalSections
143
- })
159
+ }
144
160
  };
145
161
  };
146
162
  Page.displayName = 'Page';