@faststore/core 22.42.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +4 -0
- package/.editorconfig +13 -0
- package/.eslintignore +8 -0
- package/.eslintrc +21 -0
- package/.github/CODEOWNERS +2 -0
- package/.github/workflows/release.yml +40 -0
- package/.husky/pre-commit +4 -0
- package/.prettierignore +8 -0
- package/.prettierrc +1 -0
- package/.release-it.json +31 -0
- package/.storybook/components/BestPractices.tsx +18 -0
- package/.storybook/components/BestPracticesRule.tsx +43 -0
- package/.storybook/components/Callout.tsx +12 -0
- package/.storybook/components/SectionItem.tsx +44 -0
- package/.storybook/components/SectionList.tsx +27 -0
- package/.storybook/components/TokenDivider.tsx +12 -0
- package/.storybook/components/TokenRow.tsx +32 -0
- package/.storybook/components/TokenTable.tsx +33 -0
- package/.storybook/components/index.ts +8 -0
- package/.storybook/main.js +59 -0
- package/.storybook/manager-head.html +9 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/mocks/cart-sidebar.js +40 -0
- package/.storybook/mocks/filter-slider.js +59 -0
- package/.storybook/mocks/index.ts +5 -0
- package/.storybook/mocks/product.ts +67 -0
- package/.storybook/mocks/productGridItems.ts +334 -0
- package/.storybook/mocks/searchHistory.ts +8 -0
- package/.storybook/mocks/searchTerms.ts +5 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.js +89 -0
- package/.storybook/storybook.css +550 -0
- package/.storybook/theme.js +21 -0
- package/.stylelintignore +1 -0
- package/.vscode/settings.json +7 -0
- package/@generated/graphql/index.ts +1133 -0
- package/@generated/graphql/persisted.json +12 -0
- package/CHANGELOG.md +730 -0
- package/LICENSE +21 -0
- package/README.md +437 -0
- package/bun.lockb +0 -0
- package/cms/content-types.json +52 -0
- package/cms/sections.json +350 -0
- package/cms/translation-keys.json +1 -0
- package/cms-webhook-urls.json +5 -0
- package/codegen.yml +22 -0
- package/cypress/fixtures/example.json +5 -0
- package/cypress/global.js +15 -0
- package/cypress/integration/a11y.test.js +45 -0
- package/cypress/integration/analytics.test.js +381 -0
- package/cypress/integration/cart.test.js +100 -0
- package/cypress/integration/performance.test.js +65 -0
- package/cypress/integration/plp.test.js +224 -0
- package/cypress/integration/search.test.js +38 -0
- package/cypress/integration/seo.test.js +318 -0
- package/cypress/plugins/index.js +41 -0
- package/cypress/support/commands.js +70 -0
- package/cypress/support/index.js +3 -0
- package/cypress.json +9 -0
- package/lighthouserc.js +22 -0
- package/next-env.d.ts +5 -0
- package/next.config.js +35 -0
- package/package.json +114 -0
- package/postcss.config.js +5 -0
- package/public/brandless-negative.png +0 -0
- package/public/brandless-neutral.png +0 -0
- package/public/brandless-positive.png +0 -0
- package/public/brandless-storybook.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/icons.svg +58 -0
- package/public/logo.svg +42 -0
- package/public/mockServiceWorker.js +367 -0
- package/public/robots.txt +5 -0
- package/pull_request_template.md +37 -0
- package/renovate.json +5 -0
- package/src/Layout.tsx +51 -0
- package/src/components/ThirdPartyScripts/GoogleTagManager.tsx +61 -0
- package/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx +37 -0
- package/src/components/ThirdPartyScripts/index.ts +1 -0
- package/src/components/ThirdPartyScripts/vtex.tsx +23 -0
- package/src/components/cart/CartItem/CartItem.stories.mdx +134 -0
- package/src/components/cart/CartItem/CartItem.tsx +158 -0
- package/src/components/cart/CartItem/cart-item.module.scss +68 -0
- package/src/components/cart/CartItem/index.ts +1 -0
- package/src/components/cart/CartSidebar/CartSidebar.stories.mdx +119 -0
- package/src/components/cart/CartSidebar/CartSidebar.tsx +140 -0
- package/src/components/cart/CartSidebar/cart-sidebar.module.scss +69 -0
- package/src/components/cart/CartSidebar/index.ts +1 -0
- package/src/components/cart/CartToggle/CartToggle.tsx +20 -0
- package/src/components/cart/CartToggle/index.ts +1 -0
- package/src/components/cart/EmptyCart/EmptyCart.tsx +26 -0
- package/src/components/cart/EmptyCart/index.ts +1 -0
- package/src/components/cart/OrderSummary/OrderSummary.tsx +39 -0
- package/src/components/cart/OrderSummary/index.ts +1 -0
- package/src/components/cart/OrderSummary/order-summary.module.scss +22 -0
- package/src/components/cms/RenderPageSections.tsx +52 -0
- package/src/components/cms/SectionBoundary.tsx +34 -0
- package/src/components/common/Alert/Alert.tsx +53 -0
- package/src/components/common/Alert/index.ts +1 -0
- package/src/components/common/Footer/Footer.stories.mdx +158 -0
- package/src/components/common/Footer/Footer.tsx +160 -0
- package/src/components/common/Footer/FooterLinks.tsx +155 -0
- package/src/components/common/Footer/footer.module.scss +246 -0
- package/src/components/common/Footer/index.ts +2 -0
- package/src/components/common/Navbar/NavLinks.stories.mdx +122 -0
- package/src/components/common/Navbar/NavLinks.tsx +58 -0
- package/src/components/common/Navbar/Navbar.stories.mdx +179 -0
- package/src/components/common/Navbar/Navbar.tsx +97 -0
- package/src/components/common/Navbar/NavbarSlider.stories.mdx +108 -0
- package/src/components/common/Navbar/NavbarSlider.tsx +62 -0
- package/src/components/common/Navbar/index.ts +3 -0
- package/src/components/common/Navbar/navbar-slider.module.scss +60 -0
- package/src/components/common/Navbar/navbar.module.scss +204 -0
- package/src/components/common/Navbar/navlinks.module.scss +96 -0
- package/src/components/common/Toast/Toast.tsx +40 -0
- package/src/components/common/Toast/index.ts +1 -0
- package/src/components/product/OutOfStock/OutOfStock.stories.mdx +127 -0
- package/src/components/product/OutOfStock/OutOfStock.tsx +134 -0
- package/src/components/product/OutOfStock/index.ts +2 -0
- package/src/components/product/OutOfStock/out-of-stock.module.scss +55 -0
- package/src/components/product/ProductCard/ProductCard.stories.mdx +412 -0
- package/src/components/product/ProductCard/ProductCard.tsx +170 -0
- package/src/components/product/ProductCard/index.ts +2 -0
- package/src/components/product/ProductCard/product-card.module.scss +254 -0
- package/src/components/product/ProductGrid/ProductGrid.stories.mdx +97 -0
- package/src/components/product/ProductGrid/ProductGrid.tsx +37 -0
- package/src/components/product/ProductGrid/index.ts +1 -0
- package/src/components/product/ProductGrid/product-grid.module.scss +39 -0
- package/src/components/regionalization/Regionalization.stories.mdx +182 -0
- package/src/components/regionalization/RegionalizationBar/RegionalizationBar.stories.mdx +116 -0
- package/src/components/regionalization/RegionalizationBar/RegionalizationBar.tsx +40 -0
- package/src/components/regionalization/RegionalizationBar/index.ts +1 -0
- package/src/components/regionalization/RegionalizationBar/regionalization-bar.module.scss +56 -0
- package/src/components/regionalization/RegionalizationButton/RegionalizationButton.tsx +24 -0
- package/src/components/regionalization/RegionalizationButton/index.ts +1 -0
- package/src/components/regionalization/RegionalizationInput/RegionalizationInput.tsx +61 -0
- package/src/components/regionalization/RegionalizationInput/index.ts +1 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModal.stories.mdx +161 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModal.tsx +13 -0
- package/src/components/regionalization/RegionalizationModal/RegionalizationModalContent.tsx +48 -0
- package/src/components/regionalization/RegionalizationModal/index.ts +2 -0
- package/src/components/regionalization/RegionalizationModal/regionalization-modal-content.module.scss +79 -0
- package/src/components/search/Filter/Facets.stories.mdx +284 -0
- package/src/components/search/Filter/Facets.tsx +136 -0
- package/src/components/search/Filter/Filter.stories.mdx +209 -0
- package/src/components/search/Filter/Filter.tsx +91 -0
- package/src/components/search/Filter/FilterSlider.stories.mdx +226 -0
- package/src/components/search/Filter/FilterSlider.tsx +109 -0
- package/src/components/search/Filter/facets.module.scss +117 -0
- package/src/components/search/Filter/filter-slider.module.scss +63 -0
- package/src/components/search/Filter/index.ts +2 -0
- package/src/components/search/Filter/useFilter.ts +131 -0
- package/src/components/search/Search.stories.mdx +169 -0
- package/src/components/search/SearchDropdown/SearchDropdown.stories.mdx +62 -0
- package/src/components/search/SearchDropdown/SearchDropdown.tsx +44 -0
- package/src/components/search/SearchDropdown/index.ts +2 -0
- package/src/components/search/SearchHistory/SearchHistory.stories.mdx +59 -0
- package/src/components/search/SearchHistory/SearchHistory.tsx +51 -0
- package/src/components/search/SearchHistory/index.ts +1 -0
- package/src/components/search/SearchInput/SearchInput.stories.mdx +205 -0
- package/src/components/search/SearchInput/SearchInput.tsx +128 -0
- package/src/components/search/SearchInput/index.ts +2 -0
- package/src/components/search/SearchInput/search-input.module.scss +153 -0
- package/src/components/search/SearchProductCard/SearchProductCard.stories.mdx +96 -0
- package/src/components/search/SearchProductCard/SearchProductCard.tsx +103 -0
- package/src/components/search/SearchProductCard/index.ts +1 -0
- package/src/components/search/SearchProductCard/search-product-card.module.scss +54 -0
- package/src/components/search/SearchSharedTokenTable.mdx +98 -0
- package/src/components/search/SearchSuggestions/SearchSuggestions.stories.mdx +58 -0
- package/src/components/search/SearchSuggestions/SearchSuggestions.tsx +136 -0
- package/src/components/search/SearchSuggestions/index.ts +2 -0
- package/src/components/search/SearchTop/SearchTop.stories.mdx +58 -0
- package/src/components/search/SearchTop/SearchTop.tsx +78 -0
- package/src/components/search/SearchTop/index.ts +2 -0
- package/src/components/search/Sort/Sort.tsx +42 -0
- package/src/components/search/Sort/index.ts +1 -0
- package/src/components/search/search.module.scss +101 -0
- package/src/components/search/searchMock.ts +48 -0
- package/src/components/sections/BannerNewsletter/BannerNewsletter.tsx +28 -0
- package/src/components/sections/BannerNewsletter/banner-newsletter.module.scss +23 -0
- package/src/components/sections/BannerText/BannerText.stories.mdx +270 -0
- package/src/components/sections/BannerText/BannerText.tsx +87 -0
- package/src/components/sections/BannerText/banner-text.module.scss +127 -0
- package/src/components/sections/BannerText/index.ts +2 -0
- package/src/components/sections/Breadcrumb/Breadcrumb.tsx +24 -0
- package/src/components/sections/Breadcrumb/index.ts +1 -0
- package/src/components/sections/Hero/Hero.stories.mdx +277 -0
- package/src/components/sections/Hero/Hero.tsx +109 -0
- package/src/components/sections/Hero/hero.module.scss +180 -0
- package/src/components/sections/Hero/index.ts +2 -0
- package/src/components/sections/Incentives/Incentives.stories.mdx +159 -0
- package/src/components/sections/Incentives/Incentives.tsx +69 -0
- package/src/components/sections/Incentives/IncentivesFooter.tsx +8 -0
- package/src/components/sections/Incentives/IncentivesHeader.tsx +23 -0
- package/src/components/sections/Incentives/incentives.module.scss +122 -0
- package/src/components/sections/Incentives/incentivesMock.ts +55 -0
- package/src/components/sections/Incentives/index.ts +2 -0
- package/src/components/sections/Newsletter/Newsletter.stories.mdx +139 -0
- package/src/components/sections/Newsletter/Newsletter.tsx +151 -0
- package/src/components/sections/Newsletter/index.ts +2 -0
- package/src/components/sections/Newsletter/newsletter.module.scss +135 -0
- package/src/components/sections/ProducDetailsContent/ProductDetailsContent.stories.mdx +66 -0
- package/src/components/sections/ProducDetailsContent/ProductDetailsContent.tsx +278 -0
- package/src/components/sections/ProducDetailsContent/index.ts +1 -0
- package/src/components/sections/ProducDetailsContent/product-details-content.module.scss +50 -0
- package/src/components/sections/ProductDetails/ProductDetails.tsx +316 -0
- package/src/components/sections/ProductDetails/index.ts +1 -0
- package/src/components/sections/ProductDetails/product-details.module.scss +194 -0
- package/src/components/sections/ProductGallery/EmptyGallery.tsx +38 -0
- package/src/components/sections/ProductGallery/ProductGallery.tsx +186 -0
- package/src/components/sections/ProductGallery/ProductGalleryPage.tsx +70 -0
- package/src/components/sections/ProductGallery/index.ts +1 -0
- package/src/components/sections/ProductGallery/product-gallery.module.scss +184 -0
- package/src/components/sections/ProductGallery/useDelayedFacets.ts +18 -0
- package/src/components/sections/ProductGallery/useDelayedPagination.ts +16 -0
- package/src/components/sections/ProductGallery/useGalleryQuery.ts +58 -0
- package/src/components/sections/ProductGallery/usePageProducts.ts +48 -0
- package/src/components/sections/ProductShelf/ProductShelf.tsx +68 -0
- package/src/components/sections/ProductShelf/index.ts +1 -0
- package/src/components/sections/ProductShelf/product-shelf.module.scss +41 -0
- package/src/components/sections/ProductTiles/ProductTiles.tsx +83 -0
- package/src/components/sections/ProductTiles/index.ts +1 -0
- package/src/components/sections/ScrollToTopButton/ScrollToTopButton.tsx +45 -0
- package/src/components/sections/ScrollToTopButton/index.ts +1 -0
- package/src/components/sections/ScrollToTopButton/scroll-to-top-button.module.scss +12 -0
- package/src/components/sections/Section/Section.tsx +15 -0
- package/src/components/sections/Section/index.ts +1 -0
- package/src/components/sections/Section/section.scss +16 -0
- package/src/components/skeletons/FilterSkeleton/FilterSkeleton.stories.mdx +97 -0
- package/src/components/skeletons/FilterSkeleton/FilterSkeleton.tsx +34 -0
- package/src/components/skeletons/FilterSkeleton/filter-skeleton.module.scss +51 -0
- package/src/components/skeletons/FilterSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductCardSkeleton/ProductCardSkeleton.stories.mdx +176 -0
- package/src/components/skeletons/ProductCardSkeleton/ProductCardSkeleton.tsx +52 -0
- package/src/components/skeletons/ProductCardSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductCardSkeleton/product-card-skeleton.module.scss +97 -0
- package/src/components/skeletons/ProductGridSkeleton/ProductGridSkeleton.tsx +29 -0
- package/src/components/skeletons/ProductGridSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductShelfSkeleton/ProductShelfSkeleton.tsx +32 -0
- package/src/components/skeletons/ProductShelfSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/ProductTileSkeleton.tsx +57 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/index.ts +1 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTileSkeleton/product-tile-skeleton.module.scss +218 -0
- package/src/components/skeletons/ProductTilesSkeleton/ProductTilesSkeleton.tsx +33 -0
- package/src/components/skeletons/ProductTilesSkeleton/index.ts +2 -0
- package/src/components/skeletons/Shimmer/Shimmer.tsx +11 -0
- package/src/components/skeletons/Shimmer/index.ts +1 -0
- package/src/components/skeletons/Shimmer/shimmer.module.scss +43 -0
- package/src/components/skeletons/Skeleton/Skeleton.tsx +49 -0
- package/src/components/skeletons/Skeleton/index.ts +1 -0
- package/src/components/skeletons/Skeleton/skeleton.module.scss +77 -0
- package/src/components/skeletons/Skeletons.stories.mdx +178 -0
- package/src/components/ui/Accordion/Accordion.stories.mdx +219 -0
- package/src/components/ui/Accordion/Accordion.tsx +39 -0
- package/src/components/ui/Accordion/AccordionItem.stories.mdx +116 -0
- package/src/components/ui/Accordion/AccordionItem.tsx +82 -0
- package/src/components/ui/Accordion/accordion.module.scss +65 -0
- package/src/components/ui/Accordion/index.ts +2 -0
- package/src/components/ui/Alert/Alert.stories.mdx +164 -0
- package/src/components/ui/Alert/Alert.tsx +78 -0
- package/src/components/ui/Alert/alert.module.scss +93 -0
- package/src/components/ui/Alert/index.ts +1 -0
- package/src/components/ui/Badge/Badge.stories.mdx +465 -0
- package/src/components/ui/Badge/Badge.tsx +76 -0
- package/src/components/ui/Badge/DiscountBadge.stories.mdx +191 -0
- package/src/components/ui/Badge/DiscountBadge.tsx +57 -0
- package/src/components/ui/Badge/badge.module.scss +252 -0
- package/src/components/ui/Badge/index.ts +4 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.stories.mdx +197 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.tsx +122 -0
- package/src/components/ui/Breadcrumb/breadcrumb.module.scss +144 -0
- package/src/components/ui/Breadcrumb/index.ts +2 -0
- package/src/components/ui/Button/Button.stories.mdx +685 -0
- package/src/components/ui/Button/Button.tsx +85 -0
- package/src/components/ui/Button/ButtonBuy/ButtonBuy.tsx +24 -0
- package/src/components/ui/Button/ButtonBuy/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/ButtonLink.tsx +49 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignIn.tsx +22 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignInFallback/ButtonSignInFallback.tsx +18 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/ButtonSignInFallback/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/ButtonSignIn/index.ts +1 -0
- package/src/components/ui/Button/ButtonLink/index.ts +1 -0
- package/src/components/ui/Button/button.module.scss +392 -0
- package/src/components/ui/Button/index.ts +6 -0
- package/src/components/ui/Checkbox/Checkbox.stories.mdx +268 -0
- package/src/components/ui/Checkbox/Checkbox.tsx +20 -0
- package/src/components/ui/Checkbox/checkbox.module.scss +157 -0
- package/src/components/ui/Checkbox/index.ts +2 -0
- package/src/components/ui/Dropdown/Dropdown.stories.mdx +232 -0
- package/src/components/ui/Dropdown/Dropdown.tsx +12 -0
- package/src/components/ui/Dropdown/DropdownButton.tsx +20 -0
- package/src/components/ui/Dropdown/DropdownItem.stories.mdx +139 -0
- package/src/components/ui/Dropdown/DropdownItem.tsx +26 -0
- package/src/components/ui/Dropdown/DropdownMenu.stories.mdx +115 -0
- package/src/components/ui/Dropdown/DropdownMenu.tsx +34 -0
- package/src/components/ui/Dropdown/dropdown.module.scss +101 -0
- package/src/components/ui/Dropdown/index.ts +4 -0
- package/src/components/ui/EmptyState/EmptyState.stories.mdx +146 -0
- package/src/components/ui/EmptyState/EmptyState.tsx +26 -0
- package/src/components/ui/EmptyState/empty-state.module.scss +63 -0
- package/src/components/ui/EmptyState/index.ts +1 -0
- package/src/components/ui/Gift/Gift.stories.mdx +99 -0
- package/src/components/ui/Gift/Gift.tsx +76 -0
- package/src/components/ui/Gift/gift.module.scss +94 -0
- package/src/components/ui/Gift/index.ts +2 -0
- package/src/components/ui/Icon/Icon.tsx +35 -0
- package/src/components/ui/Icon/index.ts +1 -0
- package/src/components/ui/Image/Image.tsx +59 -0
- package/src/components/ui/Image/index.ts +1 -0
- package/src/components/ui/Image/thumborUrlBuilder.ts +101 -0
- package/src/components/ui/Image/useImage.ts +46 -0
- package/src/components/ui/ImageGallery/ImageGallery.stories.mdx +173 -0
- package/src/components/ui/ImageGallery/ImageGallery.tsx +51 -0
- package/src/components/ui/ImageGallery/ImageGallerySelector.tsx +116 -0
- package/src/components/ui/ImageGallery/ImageZoom.tsx +12 -0
- package/src/components/ui/ImageGallery/image-gallery-selector.module.scss +131 -0
- package/src/components/ui/ImageGallery/image-gallery.module.scss +56 -0
- package/src/components/ui/ImageGallery/index.ts +4 -0
- package/src/components/ui/InputText/InputText.stories.mdx +311 -0
- package/src/components/ui/InputText/InputText.tsx +128 -0
- package/src/components/ui/InputText/index.ts +2 -0
- package/src/components/ui/InputText/input-text.module.scss +168 -0
- package/src/components/ui/Link/Link.stories.mdx +272 -0
- package/src/components/ui/Link/Link.tsx +68 -0
- package/src/components/ui/Link/index.ts +2 -0
- package/src/components/ui/Link/link.module.scss +98 -0
- package/src/components/ui/Logo/Logo.tsx +14 -0
- package/src/components/ui/Logo/index.ts +1 -0
- package/src/components/ui/Logo/logo.module.scss +12 -0
- package/src/components/ui/Modal/Modal.stories.mdx +142 -0
- package/src/components/ui/Modal/Modal.tsx +43 -0
- package/src/components/ui/Modal/index.ts +1 -0
- package/src/components/ui/Modal/modal.module.scss +46 -0
- package/src/components/ui/Price/Price.stories.mdx +194 -0
- package/src/components/ui/Price/Price.tsx +32 -0
- package/src/components/ui/Price/index.ts +1 -0
- package/src/components/ui/Price/price.module.scss +27 -0
- package/src/components/ui/PriceRange/PriceRange.stories.mdx +192 -0
- package/src/components/ui/PriceRange/PriceRange.tsx +138 -0
- package/src/components/ui/PriceRange/index.ts +1 -0
- package/src/components/ui/PriceRange/price-range.module.scss +176 -0
- package/src/components/ui/ProductTitle/ProductTitle.stories.mdx +107 -0
- package/src/components/ui/ProductTitle/ProductTitle.tsx +11 -0
- package/src/components/ui/ProductTitle/index.ts +1 -0
- package/src/components/ui/ProductTitle/product-title.module.scss +48 -0
- package/src/components/ui/QuantitySelector/QuantitySelector.stories.mdx +246 -0
- package/src/components/ui/QuantitySelector/QuantitySelector.tsx +103 -0
- package/src/components/ui/QuantitySelector/index.ts +1 -0
- package/src/components/ui/QuantitySelector/quantity-selector.module.scss +160 -0
- package/src/components/ui/Radio/Radio.stories.mdx +237 -0
- package/src/components/ui/Radio/Radio.tsx +36 -0
- package/src/components/ui/Radio/index.ts +2 -0
- package/src/components/ui/Radio/radio.module.scss +122 -0
- package/src/components/ui/SROnly/SROnly.tsx +20 -0
- package/src/components/ui/SROnly/index.ts +1 -0
- package/src/components/ui/SROnly/sr-only.module.scss +15 -0
- package/src/components/ui/Select/Select.stories.mdx +168 -0
- package/src/components/ui/Select/Select.tsx +70 -0
- package/src/components/ui/Select/index.ts +2 -0
- package/src/components/ui/Select/select.module.scss +85 -0
- package/src/components/ui/ShippingSimulation/ShippingSimulation.stories.mdx +140 -0
- package/src/components/ui/ShippingSimulation/ShippingSimulation.tsx +109 -0
- package/src/components/ui/ShippingSimulation/index.ts +1 -0
- package/src/components/ui/ShippingSimulation/shipping-simulation.module.scss +96 -0
- package/src/components/ui/ShippingSimulation/useShippingSimulation.ts +225 -0
- package/src/components/ui/SkuSelector/Selectors.stories.mdx +82 -0
- package/src/components/ui/SkuSelector/Selectors.tsx +87 -0
- package/src/components/ui/SkuSelector/SkuSelector.stories.mdx +345 -0
- package/src/components/ui/SkuSelector/SkuSelector.tsx +46 -0
- package/src/components/ui/SkuSelector/index.ts +3 -0
- package/src/components/ui/SkuSelector/sku-selector.module.scss +172 -0
- package/src/components/ui/SkuSelector/skuVariants.ts +59 -0
- package/src/components/ui/SlideOver/SlideOver.stories.mdx +285 -0
- package/src/components/ui/SlideOver/SlideOver.tsx +58 -0
- package/src/components/ui/SlideOver/index.ts +1 -0
- package/src/components/ui/SlideOver/overlay.scss +14 -0
- package/src/components/ui/SlideOver/slide-over.module.scss +63 -0
- package/src/components/ui/Tiles/Tiles.stories.mdx +153 -0
- package/src/components/ui/Tiles/Tiles.tsx +14 -0
- package/src/components/ui/Tiles/index.ts +5 -0
- package/src/components/ui/Tiles/tiles.module.scss +60 -0
- package/src/components/ui/Toast/Toast.stories.mdx +158 -0
- package/src/components/ui/Toast/Toast.tsx +56 -0
- package/src/components/ui/Toast/index.ts +1 -0
- package/src/components/ui/Toast/toast.module.scss +112 -0
- package/src/components/ui/Toggle/Toggle.stories.mdx +604 -0
- package/src/components/ui/Toggle/Toggle.tsx +75 -0
- package/src/components/ui/Toggle/index.ts +2 -0
- package/src/components/ui/Toggle/toggle.module.scss +200 -0
- package/src/constants.ts +2 -0
- package/src/fonts/WebFonts.tsx +15 -0
- package/src/images/icon.png +0 -0
- package/src/pages/404.tsx +27 -0
- package/src/pages/500.tsx +31 -0
- package/src/pages/[...slug].tsx +186 -0
- package/src/pages/[slug]/p.tsx +209 -0
- package/src/pages/_app.tsx +38 -0
- package/src/pages/_document.tsx +22 -0
- package/src/pages/account.tsx +20 -0
- package/src/pages/api/graphql.ts +72 -0
- package/src/pages/api/preview.ts +61 -0
- package/src/pages/checkout.tsx +20 -0
- package/src/pages/index.tsx +72 -0
- package/src/pages/login.tsx +20 -0
- package/src/pages/s.tsx +83 -0
- package/src/sdk/analytics/hooks/useViewItemListEvent.ts +51 -0
- package/src/sdk/analytics/index.tsx +30 -0
- package/src/sdk/analytics/platform/vtex/index.ts +11 -0
- package/src/sdk/analytics/platform/vtex/search.ts +102 -0
- package/src/sdk/analytics/types.ts +22 -0
- package/src/sdk/cart/index.ts +187 -0
- package/src/sdk/cart/useBuyButton.ts +62 -0
- package/src/sdk/cart/useCartToggleButton.ts +23 -0
- package/src/sdk/cart/useCheckoutButton.ts +22 -0
- package/src/sdk/cart/useRemoveButton.ts +56 -0
- package/src/sdk/error/ErrorBoundary/ErrorBoundary.tsx +67 -0
- package/src/sdk/error/ErrorBoundary/index.ts +1 -0
- package/src/sdk/graphql/prefetchQuery.ts +20 -0
- package/src/sdk/graphql/request.ts +25 -0
- package/src/sdk/graphql/useLazyQuery.ts +29 -0
- package/src/sdk/graphql/useQuery.ts +40 -0
- package/src/sdk/newsletter/useNewsletter.ts +31 -0
- package/src/sdk/product/useDiscountPercent.ts +10 -0
- package/src/sdk/product/useFormattedPrice.ts +27 -0
- package/src/sdk/product/useProduct.ts +46 -0
- package/src/sdk/product/useProductLink.ts +69 -0
- package/src/sdk/product/useProductsQuery.ts +107 -0
- package/src/sdk/search/Sentinel.tsx +78 -0
- package/src/sdk/search/state.ts +11 -0
- package/src/sdk/search/useSearchHistory.ts +40 -0
- package/src/sdk/search/useSearchInput.tsx +43 -0
- package/src/sdk/search/useSuggestions.ts +49 -0
- package/src/sdk/search/useTopSearch.ts +49 -0
- package/src/sdk/session/index.ts +71 -0
- package/src/sdk/tests/mark.tsx +10 -0
- package/src/sdk/ui/Provider.tsx +151 -0
- package/src/sdk/ui/useFadeEffect.ts +21 -0
- package/src/sdk/ui/useOnClickOutside.ts +39 -0
- package/src/sdk/ui/useScrollDirection.ts +31 -0
- package/src/sdk/useStore.ts +24 -0
- package/src/server/cms.ts +66 -0
- package/src/server/index.ts +105 -0
- package/src/stories/brandless.stories.mdx +85 -0
- package/src/stories/changelog-template.stories.mdx +10 -0
- package/src/stories/colors.stories.mdx +306 -0
- package/src/stories/customizing.stories.mdx +113 -0
- package/src/stories/getting-started.stories.mdx +65 -0
- package/src/stories/grid-layout.stories.mdx +53 -0
- package/src/stories/icons.stories.mdx +237 -0
- package/src/stories/interactive-controls.stories.mdx +50 -0
- package/src/stories/midnight.stories.mdx +56 -0
- package/src/stories/refinements.stories.mdx +96 -0
- package/src/stories/soft-blue.stories.mdx +56 -0
- package/src/stories/spacing.stories.mdx +38 -0
- package/src/stories/typography.stories.mdx +224 -0
- package/src/styles/global/components.scss +5 -0
- package/src/styles/global/layout.scss +80 -0
- package/src/styles/global/resets.scss +48 -0
- package/src/styles/global/storybook-components.scss +5 -0
- package/src/styles/global/tokens.scss +276 -0
- package/src/styles/global/typography.scss +66 -0
- package/src/styles/global/utilities.scss +69 -0
- package/src/styles/scaffold.scss +7 -0
- package/src/styles/themes/custom-theme.scss +36 -0
- package/src/styles/themes/midnight.scss +123 -0
- package/src/styles/themes/soft-blue.scss +79 -0
- package/src/styles/vendors/include-media.scss +4 -0
- package/src/styles/vendors/include-media_overwrite.scss +9 -0
- package/src/styles/vendors/modern-normalize.css +270 -0
- package/src/typings/global.d.ts +6 -0
- package/src/typings/module.css.d.ts +7 -0
- package/store.config.js +69 -0
- package/stylelint.config.js +82 -0
- package/tsconfig.json +25 -0
- package/vtex.env +14 -0
package/lighthouserc.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const lhConfig = require('@faststore/lighthouse').default
|
|
2
|
+
|
|
3
|
+
const { lighthouse: lh } = require('./store.config')
|
|
4
|
+
|
|
5
|
+
module.exports = lhConfig({
|
|
6
|
+
urls: Object.values(lh.pages),
|
|
7
|
+
server: lh.server,
|
|
8
|
+
assertions: {
|
|
9
|
+
'csp-xss': 'off',
|
|
10
|
+
|
|
11
|
+
// The following rules should be removed one this is fixed:
|
|
12
|
+
// https://github.com/BuilderIO/partytown/issues/178
|
|
13
|
+
'categories:best-practices': [
|
|
14
|
+
'error',
|
|
15
|
+
{
|
|
16
|
+
minScore: 0.9,
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
deprecations: 'warn',
|
|
20
|
+
'resource-summary:stylesheet:count': ['warn', { maxNumericValue: 400 }],
|
|
21
|
+
},
|
|
22
|
+
})
|
package/next-env.d.ts
ADDED
package/next.config.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// @ts-check
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @type {import('next').NextConfig}
|
|
5
|
+
* */
|
|
6
|
+
const nextConfig = {
|
|
7
|
+
/* config options here */
|
|
8
|
+
i18n: {
|
|
9
|
+
locales: ['en-US'],
|
|
10
|
+
defaultLocale: 'en-US',
|
|
11
|
+
},
|
|
12
|
+
webpack: (config, { isServer, dev }) => {
|
|
13
|
+
// https://github.com/vercel/next.js/discussions/11267#discussioncomment-2479112
|
|
14
|
+
// camel-case style names from css modules
|
|
15
|
+
config.module.rules
|
|
16
|
+
.find(({ oneOf }) => !!oneOf)
|
|
17
|
+
.oneOf.filter(({ use }) => JSON.stringify(use)?.includes('css-loader'))
|
|
18
|
+
.reduce((acc, { use }) => acc.concat(use), [])
|
|
19
|
+
.forEach(({ options }) => {
|
|
20
|
+
if (options.modules) {
|
|
21
|
+
options.modules.exportLocalsConvention = 'camelCase'
|
|
22
|
+
}
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
// Reduce the number of chunks so we ship a smaller first bundle.
|
|
26
|
+
// This should help reducing TBT
|
|
27
|
+
if (!isServer && !dev && config.optimization?.splitChunks) {
|
|
28
|
+
config.optimization.splitChunks.maxInitialRequests = 1
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return config
|
|
32
|
+
},
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
module.exports = nextConfig
|
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@faststore/core",
|
|
3
|
+
"version": "22.42.6",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"browserslist": "supports es6-module and not dead",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"generate": "graphql-codegen",
|
|
8
|
+
"build": "yarn partytown && next build",
|
|
9
|
+
"develop": "yarn partytown && next dev",
|
|
10
|
+
"clean": "rm -r .next",
|
|
11
|
+
"serve": "next start",
|
|
12
|
+
"test": "cypress open",
|
|
13
|
+
"lhci": "lhci autorun",
|
|
14
|
+
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json}\"",
|
|
15
|
+
"lint": "eslint --ext js,ts,jsx,tsx .",
|
|
16
|
+
"stylelint": "stylelint \"**/*.scss\"",
|
|
17
|
+
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
|
|
18
|
+
"postinstall": "is-ci || husky install",
|
|
19
|
+
"partytown": "partytown copylib ./public/~partytown",
|
|
20
|
+
"storybook": "start-storybook --docs -p 6006",
|
|
21
|
+
"build-storybook": "build-storybook",
|
|
22
|
+
"release": "release-it --ci"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=14"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@builder.io/partytown": "^0.6.1",
|
|
29
|
+
"@envelop/core": "^1.2.0",
|
|
30
|
+
"@envelop/graphql-jit": "^1.1.1",
|
|
31
|
+
"@envelop/parser-cache": "^2.2.0",
|
|
32
|
+
"@envelop/validation-cache": "^2.2.0",
|
|
33
|
+
"@faststore/api": "^1.12.17",
|
|
34
|
+
"@faststore/graphql-utils": "^1.11.8",
|
|
35
|
+
"@faststore/sdk": "^1.11.8",
|
|
36
|
+
"@faststore/ui": "^1.12.13",
|
|
37
|
+
"@vtex/client-cms": "^0.2.12",
|
|
38
|
+
"graphql": "^15.0.0",
|
|
39
|
+
"include-media": "^1.4.10",
|
|
40
|
+
"next": "^12.3.1",
|
|
41
|
+
"next-seo": "^5.4.0",
|
|
42
|
+
"nextjs-progressbar": "^0.0.14",
|
|
43
|
+
"react": "^18.2.0",
|
|
44
|
+
"react-dom": "^18.2.0",
|
|
45
|
+
"react-intersection-observer": "^8.32.5",
|
|
46
|
+
"sass": "^1.44.0",
|
|
47
|
+
"swr": "^1.3.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@csmith/release-it-calver-plugin": "^2022.5.13",
|
|
51
|
+
"@cypress/code-coverage": "^3.9.10",
|
|
52
|
+
"@faststore/lighthouse": "^1.11.8",
|
|
53
|
+
"@graphql-codegen/cli": "^2.6.2",
|
|
54
|
+
"@graphql-codegen/typescript": "^2.5.1",
|
|
55
|
+
"@graphql-codegen/typescript-operations": "^2.4.2",
|
|
56
|
+
"@lhci/cli": "^0.9.0",
|
|
57
|
+
"@release-it/conventional-changelog": "^5.0.0",
|
|
58
|
+
"@storybook/addon-a11y": "^6.5.9",
|
|
59
|
+
"@storybook/addon-actions": "^6.5.9",
|
|
60
|
+
"@storybook/addon-essentials": "^6.5.9",
|
|
61
|
+
"@storybook/addon-links": "^6.5.9",
|
|
62
|
+
"@storybook/builder-webpack5": "^6.5.9",
|
|
63
|
+
"@storybook/manager-webpack5": "^6.5.9",
|
|
64
|
+
"@storybook/react": "^6.5.9",
|
|
65
|
+
"@testing-library/cypress": "^8.0.0",
|
|
66
|
+
"@types/cypress": "^1.1.3",
|
|
67
|
+
"@types/react": "^18.0.14",
|
|
68
|
+
"@vtex/prettier-config": "1.0.0",
|
|
69
|
+
"@vtex/tsconfig": "0.6.0",
|
|
70
|
+
"autoprefixer": "^10.4.0",
|
|
71
|
+
"axe-core": "^4.3.3",
|
|
72
|
+
"css-loader": "^6.7.1",
|
|
73
|
+
"cypress": "9.6.0",
|
|
74
|
+
"cypress-axe": "^0.13.0",
|
|
75
|
+
"cypress-wait-until": "^1.7.2",
|
|
76
|
+
"dotenv": "^8.2.0",
|
|
77
|
+
"eslint": "^7.22.0",
|
|
78
|
+
"eslint-config-next": "12.1.5",
|
|
79
|
+
"eslint-config-vtex-react": "^9.0.0",
|
|
80
|
+
"husky": "^5.2.0",
|
|
81
|
+
"is-ci": "^3.0.0",
|
|
82
|
+
"lint-staged": "^10.5.4",
|
|
83
|
+
"msw": "^0.43.1",
|
|
84
|
+
"msw-storybook-addon": "^1.6.3",
|
|
85
|
+
"postcss": "^8.4.4",
|
|
86
|
+
"prettier": "^2.2.0",
|
|
87
|
+
"release-it": "^15.2.0",
|
|
88
|
+
"sass-loader": "^12.6.0",
|
|
89
|
+
"style-loader": "^3.3.1",
|
|
90
|
+
"stylelint": "^14.6.0",
|
|
91
|
+
"stylelint-config-recess-order": "^3.0.0",
|
|
92
|
+
"stylelint-config-standard": "^24.0.0",
|
|
93
|
+
"stylelint-config-standard-scss": "^3.0.0",
|
|
94
|
+
"stylelint-order": "^5.0.0",
|
|
95
|
+
"stylelint-scss": "^4.0.1",
|
|
96
|
+
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
97
|
+
"typescript": "^4.7.3"
|
|
98
|
+
},
|
|
99
|
+
"lint-staged": {
|
|
100
|
+
"*.{ts,js,tsx,jsx}": [
|
|
101
|
+
"eslint --fix",
|
|
102
|
+
"prettier --write"
|
|
103
|
+
],
|
|
104
|
+
"*.json": [
|
|
105
|
+
"prettier --write"
|
|
106
|
+
],
|
|
107
|
+
"*.scss": [
|
|
108
|
+
"stylelint --fix"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
"msw": {
|
|
112
|
+
"workerDirectory": "public"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/icons.svg
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<svg style="display:none">
|
|
2
|
+
<symbol id="Bell" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M56.2,104a71.9,71.9,0,0,1,72.3-72c39.6.3,71.3,33.2,71.3,72.9V112c0,35.8,7.5,56.6,14.1,68a8,8,0,0,1-6.9,12H49a8,8,0,0,1-6.9-12c6.6-11.4,14.1-32.2,14.1-68Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M96,192v8a32,32,0,0,0,64,0v-8" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
3
|
+
<symbol id="BellRinging" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M56.20305,112a71.80121,71.80121,0,1,1,143.60186,0h0c0,35.81563,7.49325,56.59893,14.093,67.95814A7.999,7.999,0,0,1,207.01628,192H48.98365A7.99908,7.99908,0,0,1,42.103,179.95641c6.60328-11.35959,14.1-32.1426,14.1-67.95641Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M96,192v8a32,32,0,0,0,64,0v-8" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M183.43247,23.98832a104.46641,104.46641,0,0,1,37.91845,42.1156" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M34.64909,66.10391A104.46639,104.46639,0,0,1,72.56757,23.98829" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
4
|
+
<symbol id="X" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="200" y1="56" x2="56" y2="200" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="200" y1="200" x2="56" y2="56" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
5
|
+
<symbol id="XCircle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="128" cy="128" r="96" fill="none" stroke="currentColor" stroke-miterlimit="10"></circle><line x1="160" y1="96" x2="96" y2="160" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="160" y1="160" x2="96" y2="96" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
6
|
+
<symbol id="List" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="40" y1="128" x2="216" y2="128" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="40" y1="64" x2="216" y2="64" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="40" y1="192" x2="216" y2="192" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
7
|
+
<symbol id="MagnifyingGlass" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256" data-testid="store-input-mobile-button"><rect width="256" height="256" fill="none"></rect><circle cx="116" cy="116" r="84" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><line x1="175.39356" y1="175.40039" x2="223.99414" y2="224.00098" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
8
|
+
<symbol id="User" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="128" cy="96" r="64" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M30.989,215.99064a112.03731,112.03731,0,0,1,194.02311.002" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
9
|
+
<symbol id="ShoppingCart" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M184,184H69.81818L41.92162,30.56892A8,8,0,0,0,34.05066,24H16" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="80" cy="204" r="20" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><circle cx="184" cy="204" r="20" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M62.54543,144H188.10132a16,16,0,0,0,15.74192-13.13783L216,64H48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
10
|
+
<symbol id="ArrowRight" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="40" y1="128" x2="216" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><polyline points="144 56 216 128 144 200" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
11
|
+
<symbol id="ArrowLeft" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="216" y1="128" x2="40" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><polyline points="112 56 40 128 112 200" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
12
|
+
<symbol id="ArrowUpRight" xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" fill="none"><path d="M13,0.25H3.25C2.83579,0.25,2.5,0.585786,2.5,1C2.5,1.41421,2.83579,1.75,3.25,1.75H11.1893L0.46967,12.4697C0.176777,12.7626,0.176777,13.2374,0.46967,13.5303C0.762563,13.8232,1.23744,13.8232,1.53033,13.5303L12.25,2.81066V10.75C12.25,11.1642,12.5858,11.5,13,11.5C13.4142,11.5,13.75,11.1642,13.75,10.75V1C13.75,0.793702,13.6667,0.606858,13.5319,0.471263C13.5314,0.470731,13.5309,0.4702,13.5303,0.46967C13.5298,0.46914,13.5293,0.46861,13.5287,0.468082C13.4572,0.396963,13.3749,0.343239,13.2871,0.306909C13.1987,0.270239,13.1017,0.25,13,0.25Z" fill="black"/></symbol>
|
|
13
|
+
<symbol id="ArrowSquareOut" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="216 100 216 40 156 40" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline><line x1="144" y1="112" x2="216" y2="40" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><path d="M184,144v64a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V80a8,8,0,0,1,8-8h64" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
14
|
+
<symbol id="Truck" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M240,120H176V80h42.58374a8,8,0,0,1,7.42781,5.02887Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><line x1="16" y1="144" x2="176" y2="144" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><circle cx="188" cy="192" r="24" fill="none" stroke="currentColor" stroke-miterlimit="10"></circle><circle cx="68" cy="192" r="24" fill="none" stroke="currentColor" stroke-miterlimit="10"></circle><line x1="164" y1="192" x2="92" y2="192" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><path d="M44,192H24a8,8,0,0,1-8-8V72a8,8,0,0,1,8-8H176V171.21508" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M176,171.21508V120h64v64a8,8,0,0,1-8,8H212" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
15
|
+
<symbol id="Calendar" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><rect x="40" y="40" width="176" height="176" rx="8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" fill="none"></rect><line x1="176" y1="24" x2="176" y2="56" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="80" y1="24" x2="80" y2="56" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="40" y1="88" x2="216" y2="88" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><path d="M92,127.99666h28l-16,20a16,16,0,1,1-11.30681,27.3206" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><polyline points="144 139.997 160 127.997 160 179.997" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
16
|
+
<symbol id="Gift" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><rect x="32" y="80" width="192" height="48" rx="7.99999" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" fill="none"></rect><path d="M208,128v72a8,8,0,0,1-8,8H56a8,8,0,0,1-8-8V128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><line x1="128" y1="80" x2="128" y2="208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><path d="M173.25483,68.68629C161.94113,80,128,80,128,80s0-33.94113,11.31371-45.25483a24,24,0,0,1,33.94112,33.94112Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M82.74517,68.68629C94.05887,80,128,80,128,80s0-33.94113-11.31371-45.25483A24,24,0,0,0,82.74517,68.68629Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
17
|
+
<symbol id="Storefront" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M48,139.58816V208a8,8,0,0,0,8,8H200a8,8,0,0,0,8-8V139.58972" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M54.03441,40H201.96559a8,8,0,0,1,7.69219,5.80223L224,96H32L46.34222,45.80223A8,8,0,0,1,54.03441,40Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M96,96v16a32,32,0,0,1-64,0V96" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M160,96v16a32,32,0,0,1-64,0V96" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M224,96v16a32,32,0,0,1-64,0V96" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
18
|
+
<symbol id="ShieldCheck" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M40,114.66667V56a8,8,0,0,1,8-8H208a8,8,0,0,1,8,8v58.66667c0,84.01533-71.306,111.85016-85.5438,116.57058a7.54755,7.54755,0,0,1-4.9124,0C111.306,226.51683,40,198.682,40,114.66667Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><polyline points="172 104 113.333 160 84 132" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
19
|
+
<symbol id="Medal" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="127.99414" cy="96" r="80" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><circle cx="127.99414" cy="96" r="48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></circle><polyline points="176 159.995 176 240 127.993 216 80 240 80 160.002" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
20
|
+
<symbol id="CircleWavyCheck" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M54.46089,201.53911c-9.204-9.204-3.09935-28.52745-7.78412-39.85C41.82037,149.95168,24,140.50492,24,127.99963,24,115.4945,41.82047,106.048,46.67683,94.31079c4.68477-11.32253-1.41993-30.6459,7.78406-39.8499s28.52746-3.09935,39.85-7.78412C106.04832,41.82037,115.49508,24,128.00037,24c12.50513,0,21.95163,17.82047,33.68884,22.67683,11.32253,4.68477,30.6459-1.41993,39.8499,7.78406s3.09935,28.52746,7.78412,39.85C214.17963,106.04832,232,115.49508,232,128.00037c0,12.50513-17.82047,21.95163-22.67683,33.68884-4.68477,11.32253,1.41993,30.6459-7.78406,39.8499s-28.52745,3.09935-39.85,7.78412C149.95168,214.17963,140.50492,232,127.99963,232c-12.50513,0-21.95163-17.82047-33.68884-22.67683C82.98826,204.6384,63.66489,210.7431,54.46089,201.53911Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><polyline points="172 104 113.333 160 84 132" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
21
|
+
<symbol id="CircleWavyWarning" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M54.46089,201.53911c-9.204-9.204-3.09935-28.52745-7.78412-39.85C41.82037,149.95168,24,140.50492,24,127.99963,24,115.4945,41.82047,106.048,46.67683,94.31079c4.68477-11.32253-1.41993-30.6459,7.78406-39.8499s28.52746-3.09935,39.85-7.78412C106.04832,41.82037,115.49508,24,128.00037,24c12.50513,0,21.95163,17.82047,33.68884,22.67683,11.32253,4.68477,30.6459-1.41993,39.8499,7.78406s3.09935,28.52746,7.78412,39.85C214.17963,106.04832,232,115.49508,232,128.00037c0,12.50513-17.82047,21.95163-22.67683,33.68884-4.68477,11.32253,1.41993,30.6459-7.78406,39.8499s-28.52745,3.09935-39.85,7.78412C149.95168,214.17963,140.50492,232,127.99963,232c-12.50513,0-21.95163-17.82047-33.68884-22.67683C82.98826,204.6384,63.66489,210.7431,54.46089,201.53911Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><line x1="127.99951" y1="80" x2="127.99951" y2="136" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><circle cx="127.99951" cy="172" r="8"></circle></symbol>
|
|
22
|
+
<symbol id="CaretUp" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="48 160 128 80 208 160" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
23
|
+
<symbol id="CaretDown" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="208 96 128 176 48 96" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
24
|
+
<symbol id="CaretLeft" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="160 208 80 128 160 48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
25
|
+
<symbol id="CaretRight" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="96 48 176 128 96 208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></polyline></symbol>
|
|
26
|
+
<symbol id="PlusCircle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="128" cy="128" r="96" fill="none" stroke="currentColor" stroke-miterlimit="10"></circle><line x1="88" y1="128" x2="168" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="128" y1="88" x2="128" y2="168" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
27
|
+
<symbol id="MinusCircle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="128" cy="128" r="96" fill="none" stroke="currentColor" stroke-miterlimit="10"></circle><line x1="88" y1="128" x2="168" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
28
|
+
<symbol id="Minus" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="40" y1="128" x2="216" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
29
|
+
<symbol id="Plus" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="40" y1="128" x2="216" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="128" y1="40" x2="128" y2="216" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
30
|
+
<symbol id="House" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
31
|
+
<symbol id="RocketLaunch" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M195.88225,105.37258,128,173.25483,82.74517,128l67.88225-67.88225c25.70415-25.70415,51.40829-25.45342,62.37042-23.81787a7.96343,7.96343,0,0,1,6.70228,6.70228C221.33567,53.96429,221.5864,79.66843,195.88225,105.37258Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M184.56854,116.68629v64.56854a8,8,0,0,1-2.34314,5.65686l-32.34176,32.34176a8,8,0,0,1-13.5015-4.08793L128,173.25483" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M139.31371,71.43146H74.74517a8,8,0,0,0-5.65686,2.34314L36.74655,106.11636a8,8,0,0,0,4.08793,13.5015L82.74517,128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M90.56048,192.38144c-15.05815,26.12823-53.07015,26.12823-53.07015,26.12823s0-38.012,26.12827-53.07018" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
32
|
+
<symbol id="FadersHorizontal" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><line x1="135.99902" y1="171.99304" x2="39.99902" y2="171.99317" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="215.99902" y1="171.99317" x2="167.99902" y2="171.99304" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="71.99902" y1="83.99304" x2="39.99902" y2="83.99246" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="215.99902" y1="83.99246" x2="103.99902" y2="83.99304" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="103.99902" y1="59.99304" x2="103.99902" y2="107.99304" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line><line x1="167.99902" y1="195.99304" x2="167.99902" y2="147.99304" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></line></symbol>
|
|
33
|
+
<symbol id="Headphones" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M225.45581,136h-32a16,16,0,0,0-16,16v40a16,16,0,0,0,16,16h16a16,16,0,0,0,16-16V136A96.0001,96.0001,0,0,0,128.7279,40.0027,96.00009,96.00009,0,0,0,32,136v56a16,16,0,0,0,16,16H64a16,16,0,0,0,16-16V152a16,16,0,0,0-16-16H32" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></symbol>
|
|
34
|
+
<symbol id="GooglePay" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M16.0579 15.528V12.5933H17.5725C18.1931 12.5933 18.717 12.3854 19.1441 11.9752L19.2466 11.8712C20.0266 11.022 19.9754 9.69913 19.1441 8.91347C18.7284 8.49754 18.159 8.27224 17.5725 8.28379H15.1411V15.528H16.0579ZM16.058 11.7036V9.17337H17.5956C17.9259 9.17337 18.2391 9.30047 18.4726 9.53154C18.9681 10.0168 18.9795 10.8256 18.5011 11.3281C18.2676 11.5766 17.9373 11.7152 17.5956 11.7036H16.058ZM23.5228 10.9585C23.1299 10.5945 22.5947 10.4097 21.9171 10.4097C21.0459 10.4097 20.3911 10.7332 19.9583 11.3744L20.7669 11.8885C21.063 11.4495 21.4673 11.23 21.9797 11.23C22.3043 11.23 22.6175 11.3513 22.8623 11.5708C23.1015 11.7788 23.2381 12.0792 23.2381 12.3969V12.6106C22.8851 12.4142 22.441 12.3102 21.8943 12.3102C21.2566 12.3102 20.7441 12.4604 20.3626 12.7666C19.9811 13.0728 19.7875 13.4772 19.7875 13.9913C19.7761 14.4592 19.9754 14.9041 20.3285 15.2045C20.6872 15.528 21.1427 15.6897 21.6779 15.6897C22.31 15.6897 22.8111 15.4067 23.1926 14.8405H23.2324V15.528H24.1093V12.472C24.1093 11.8308 23.9157 11.3224 23.5228 10.9585ZM21.0347 14.6152C20.8467 14.4766 20.7328 14.2513 20.7328 14.0087C20.7328 13.7372 20.8581 13.5119 21.103 13.3328C21.3536 13.1537 21.6668 13.0613 22.037 13.0613C22.5495 13.0555 22.9482 13.171 23.2329 13.4021C23.2329 13.7949 23.0792 14.1358 22.7773 14.4246C22.504 14.7019 22.1338 14.8579 21.7465 14.8579C21.4903 14.8636 21.2397 14.777 21.0347 14.6152ZM26.0795 17.7058L29.1429 10.5714H28.1464L26.7286 14.13H26.7115L25.2595 10.5714H24.2631L26.2731 15.2102L25.1343 17.7058H26.0795Z" fill="#3C4043" /> <path d="M12.893 11.9579C12.893 11.6748 12.8702 11.3918 12.8247 11.1145H8.95837V12.7147H11.1734C11.0823 13.2288 10.7862 13.691 10.3534 13.9798V15.0196H11.6745C12.4488 14.2975 12.893 13.2288 12.893 11.9579Z" fill="#4285F4" /> <path d="M8.95854 16.0248C10.0632 16.0248 10.997 15.6551 11.6746 15.0196L10.3536 13.9798C9.98347 14.234 9.51086 14.3784 8.95854 14.3784C7.88805 14.3784 6.98269 13.6448 6.65813 12.6627H5.29724V13.7372C5.99192 15.141 7.40975 16.0248 8.95854 16.0248Z" fill="#34A853" /> <path d="M6.65822 12.6627C6.48737 12.1486 6.48737 11.5882 6.65822 11.0683V9.99956H5.29712C4.71053 11.1723 4.71053 12.5587 5.29712 13.7314L6.65822 12.6627Z" fill="#FBBC04" /> <path d="M8.95854 9.35253C9.54503 9.34098 10.1087 9.56628 10.5301 9.97644L11.7031 8.7864C10.9572 8.08162 9.97778 7.69457 8.95854 7.70612C7.40975 7.70612 5.99192 8.59576 5.29724 9.99954L6.65813 11.074C6.98269 10.0862 7.88805 9.35253 8.95854 9.35253Z" fill="#EA4335" /> </symbol>
|
|
35
|
+
<symbol id="ApplePay" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M9.44921 8.34316C9.16382 8.69506 8.70721 8.97261 8.2506 8.93296C8.19353 8.45715 8.41707 7.95161 8.67867 7.63936C8.96406 7.27755 9.46348 7.01983 9.86777 7C9.91533 7.49563 9.72983 7.98135 9.44921 8.34316ZM9.86297 9.02712C9.46071 9.003 9.09366 9.15319 8.79718 9.2745C8.60639 9.35256 8.44483 9.41867 8.32191 9.41867C8.18397 9.41867 8.01574 9.34903 7.82685 9.27084L7.82685 9.27084C7.57935 9.16838 7.29638 9.05124 6.99964 9.05686C6.31948 9.06677 5.68688 9.46823 5.33967 10.1076C4.62621 11.3863 5.15417 13.2796 5.84384 14.3205C6.18155 14.8359 6.58584 15.4009 7.11855 15.3811C7.35291 15.3719 7.5215 15.2973 7.69597 15.2202C7.89683 15.1314 8.10549 15.0391 8.43131 15.0391C8.74582 15.0391 8.94536 15.129 9.1369 15.2152C9.31903 15.2973 9.49393 15.376 9.75358 15.3712C10.3053 15.3613 10.6525 14.8557 10.9902 14.3403C11.3547 13.7871 11.5148 13.2471 11.5391 13.1652L11.542 13.1557C11.5414 13.1551 11.5369 13.153 11.5289 13.1492C11.4071 13.0911 10.476 12.6469 10.467 11.4557C10.4581 10.4559 11.2056 9.94935 11.3233 9.86961L11.3233 9.8696C11.3304 9.86476 11.3353 9.86149 11.3374 9.85978C10.8618 9.12625 10.1198 9.04695 9.86297 9.02712ZM13.6824 15.3167V7.5898H16.4649C17.9013 7.5898 18.9049 8.62071 18.9049 10.1274C18.9049 11.6341 17.8822 12.675 16.4268 12.675H14.8334V15.3167H13.6824ZM14.8333 8.60088H16.1603C17.1592 8.60088 17.7299 9.15599 17.7299 10.1324C17.7299 11.1088 17.1592 11.6688 16.1556 11.6688H14.8333V8.60088ZM22.7053 14.3898C22.4009 14.9945 21.7302 15.3761 21.0072 15.3761C19.9371 15.3761 19.1903 14.712 19.1903 13.7108C19.1903 12.7196 19.9133 12.1496 21.2498 12.0653L22.6862 11.9761V11.5499C22.6862 10.9204 22.2915 10.5784 21.5875 10.5784C21.0072 10.5784 20.5839 10.8907 20.4983 11.3665H19.4614C19.4947 10.3653 20.3984 9.63675 21.6208 9.63675C22.9383 9.63675 23.7945 10.3554 23.7945 11.4706V15.3167H22.729V14.3898H22.7053ZM21.3163 14.4592C20.7027 14.4592 20.3127 14.1519 20.3127 13.6811C20.3127 13.1954 20.6885 12.9129 21.4067 12.8683L22.6861 12.784V13.2202C22.6861 13.9438 22.0964 14.4592 21.3163 14.4592ZM27.3284 15.619C26.867 16.9721 26.3391 17.4181 25.2166 17.4181C25.131 17.4181 24.8456 17.4082 24.779 17.3884V16.4616C24.8503 16.4715 25.0263 16.4814 25.1167 16.4814C25.6256 16.4814 25.911 16.2584 26.087 15.6785L26.1916 15.3365L24.2415 9.7111H25.4449L26.8004 14.2759H26.8242L28.1798 9.7111H29.3499L27.3284 15.619Z" fill="black" /> </symbol>
|
|
36
|
+
<symbol id="Diners" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M15.8385 19.3H18.4346C22.487 19.3 25.7163 16.085 25.8429 12.1135V12.0504C25.7796 8.0159 22.487 4.73784 18.4346 4.80088H15.5219C11.6594 4.92696 8.6201 8.20502 8.74674 12.1135C8.74674 16.0219 11.9127 19.2369 15.8385 19.3ZM10.0131 12.0504C10.0131 8.77235 12.7359 6.06165 16.0284 6.06165C19.321 6.06165 22.0438 8.77235 22.0438 12.0504C22.0438 15.3285 19.321 18.0392 16.0284 18.0392C12.7359 18.0392 10.0131 15.3285 10.0131 12.0504ZM16.9782 16.0849V8.07892C19.1944 8.64627 20.5874 10.8527 20.0176 13.059C19.6376 14.572 18.4979 15.7067 16.9782 16.0849ZM12.1027 11.0418C11.5328 13.2482 12.8625 15.5176 15.0787 16.0849V8.07892C13.6223 8.45716 12.4826 9.59187 12.1027 11.0418Z" fill="#0079BE" /> </symbol>
|
|
37
|
+
<symbol id="EloCard" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path d="M7.82418 9.49573C8.11187 9.40141 8.41964 9.35019 8.73987 9.35019C10.1374 9.35019 11.3032 10.3241 11.5706 11.6178L13.5511 11.2216C13.0966 9.0229 11.1155 7.3678 8.73987 7.3678C8.19597 7.3678 7.67243 7.45472 7.18372 7.61484L7.82418 9.49573Z" fill="#FECA2F" /> <path d="M5.46727 15.8677L6.65306 14.3366C6.12376 13.8012 5.78968 13.0196 5.78968 12.1484C5.78968 11.2778 6.12344 10.4962 6.6526 9.96121L5.46618 8.4303C4.56678 9.33989 4 10.6685 4 12.1484C4 13.629 4.56761 14.9581 5.46727 15.8677Z" fill="#1BA7DE" /> <path d="M11.5712 12.6802C11.3029 13.9737 10.1379 14.9464 8.74154 14.9464C8.42118 14.9464 8.11281 14.895 7.82509 14.8004L7.18372 16.6822C7.67319 16.8432 8.19689 16.9302 8.74154 16.9302C11.115 16.9302 13.0948 15.2762 13.5511 13.0783L11.5712 12.6802Z" fill="#EC412A" /> <path fillRule="evenodd" clipRule="evenodd" d="M23.0795 8.4303V13.8716L24.0559 14.263L23.594 15.3362L22.6284 14.948C22.4112 14.857 22.2643 14.7183 22.1527 14.5616C22.0455 14.4013 21.966 14.1822 21.966 13.8865V8.4303H23.0795ZM15.6738 12.4744C15.6981 10.9184 17.0232 9.67627 18.6312 9.70011C19.9959 9.7208 21.1267 10.6452 21.4237 11.8746L16.1453 14.0562C15.8387 13.6029 15.6644 13.0576 15.6738 12.4744ZM16.8816 12.6926C16.8743 12.6273 16.8692 12.5603 16.8711 12.4928C16.8863 11.576 17.6664 10.8445 18.6138 10.8597C19.1295 10.8663 19.5873 11.0947 19.8969 11.4481L16.8816 12.6926ZM19.7857 13.7028C19.4676 14.002 19.0362 14.1843 18.5599 14.1778C18.2334 14.1725 17.9309 14.078 17.6737 13.9205L17.036 14.903C17.4727 15.1699 17.9876 15.3278 18.5427 15.3361C19.3508 15.3478 20.0873 15.0408 20.6228 14.534L19.7857 13.7028ZM27.1434 10.8596C26.9532 10.8596 26.7704 10.8894 26.5996 10.9448L26.2197 9.84383C26.5097 9.75019 26.8202 9.69933 27.1434 9.69933C28.5537 9.69933 29.7302 10.6681 30 11.9549L28.8238 12.1868C28.6653 11.4294 27.9732 10.8596 27.1434 10.8596ZM25.2123 14.629L26.007 13.76C25.6521 13.4561 25.4286 13.0123 25.4286 12.5176C25.4286 12.0235 25.6521 11.5799 26.0067 11.2763L25.2114 10.4072C24.6084 10.9236 24.2286 11.678 24.2286 12.5176C24.2286 13.3583 24.6087 14.1125 25.2123 14.629ZM27.1433 14.1763C27.9724 14.1763 28.6644 13.607 28.8238 12.8507L29.9996 13.0836C29.7285 14.369 28.5524 15.3364 27.1433 15.3364C26.8199 15.3364 26.5089 15.2854 26.2182 15.1913L26.599 14.0908C26.7701 14.146 26.953 14.1763 27.1433 14.1763Z" fill="black" /> </symbol>
|
|
38
|
+
<symbol id="Instagram" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <path d="M12.0005 0.363647C8.84036 0.363647 8.44377 0.377466 7.20259 0.433951C5.96384 0.490678 5.11829 0.686799 4.37843 0.974557C3.61312 1.27177 2.96393 1.66934 2.31716 2.31637C1.66991 2.96316 1.27235 3.61237 0.974173 4.37746C0.685697 5.11759 0.48934 5.9634 0.433584 7.20171C0.37807 8.44292 0.363525 8.83977 0.363525 12C0.363525 15.1603 0.377586 15.5556 0.433827 16.7969C0.490794 18.0356 0.68691 18.8812 0.974416 19.6211C1.27186 20.3864 1.66943 21.0356 2.31644 21.6824C2.96296 22.3297 3.61215 22.7283 4.37698 23.0255C5.11732 23.3132 5.96311 23.5093 7.20162 23.5661C8.4428 23.6226 8.83915 23.6364 11.9991 23.6364C15.1594 23.6364 15.5548 23.6226 16.796 23.5661C18.0347 23.5093 18.8813 23.3132 19.6216 23.0255C20.3867 22.7283 21.0349 22.3297 21.6814 21.6824C22.3287 21.0356 22.7262 20.3864 23.0244 19.6213C23.3105 18.8812 23.5068 18.0354 23.565 16.7971C23.6208 15.5559 23.6353 15.1603 23.6353 12C23.6353 8.83977 23.6208 8.44316 23.565 7.20195C23.5068 5.96316 23.3105 5.11759 23.0244 4.37771C22.7262 3.61237 22.3287 2.96316 21.6814 2.31637C21.0342 1.6691 20.3869 1.27153 19.6209 0.974557C18.8791 0.686799 18.0331 0.490678 16.7943 0.433951C15.5531 0.377466 15.158 0.363647 11.9969 0.363647H12.0005ZM10.9567 2.46062C11.2665 2.46013 11.6122 2.46062 12.0005 2.46062C15.1073 2.46062 15.4756 2.47177 16.7024 2.52753C17.8369 2.5794 18.4527 2.76898 18.8628 2.92825C19.4059 3.13916 19.793 3.39128 20.2 3.79856C20.6073 4.20583 20.8594 4.59371 21.0708 5.13674C21.23 5.54643 21.4199 6.16219 21.4715 7.29674C21.5272 8.5234 21.5394 8.89189 21.5394 11.9973C21.5394 15.1028 21.5272 15.4713 21.4715 16.6979C21.4196 17.8325 21.23 18.4483 21.0708 18.8579C20.8599 19.401 20.6073 19.7876 20.2 20.1947C19.7928 20.6019 19.4061 20.8541 18.8628 21.065C18.4532 21.225 17.8369 21.4141 16.7024 21.4659C15.4758 21.5217 15.1073 21.5338 12.0005 21.5338C8.89345 21.5338 8.52522 21.5217 7.29859 21.4659C6.16408 21.4136 5.54834 21.224 5.13793 21.0647C4.59491 20.8538 4.20705 20.6017 3.79978 20.1944C3.39252 19.7872 3.14041 19.4003 2.92902 18.857C2.76976 18.4473 2.57994 17.8315 2.52831 16.697C2.47255 15.4703 2.4614 15.1018 2.4614 11.9944C2.4614 8.88704 2.47255 8.5205 2.52831 7.29383C2.58019 6.15928 2.76976 5.54353 2.92902 5.13334C3.13993 4.59031 3.39252 4.20243 3.79978 3.79516C4.20705 3.38789 4.59491 3.13577 5.13793 2.92437C5.5481 2.76437 6.16408 2.57528 7.29859 2.52316C8.37201 2.47468 8.788 2.46013 10.9567 2.45771V2.46062ZM18.2117 4.39274C17.4408 4.39274 16.8154 5.01746 16.8154 5.78862C16.8154 6.55953 17.4408 7.18498 18.2117 7.18498C18.9826 7.18498 19.608 6.55953 19.608 5.78862C19.608 5.01771 18.9826 4.39225 18.2117 4.39225V4.39274ZM12.0005 6.02425C8.70048 6.02425 6.02493 8.69989 6.02493 12C6.02493 15.3001 8.70048 17.9746 12.0005 17.9746C15.3005 17.9746 17.9751 15.3001 17.9751 12C17.9751 8.69989 15.3003 6.02425 12.0003 6.02425H12.0005ZM12.0005 8.12122C14.1425 8.12122 15.8792 9.85771 15.8792 12C15.8792 14.1421 14.1425 15.8788 12.0005 15.8788C9.85827 15.8788 8.12184 14.1421 8.12184 12C8.12184 9.85771 9.85827 8.12122 12.0005 8.12122Z" fill="currentColor" /></symbol>
|
|
39
|
+
<symbol id="Mastercard" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M17.179 16.8294C15.9949 17.8275 14.459 18.43 12.7807 18.43C9.03582 18.43 6 15.4303 6 11.73C6 8.02966 9.03582 5.02997 12.7807 5.02997C14.459 5.02997 15.9949 5.63247 17.179 6.63051C18.363 5.63247 19.8989 5.02997 21.5773 5.02997C25.3221 5.02997 28.358 8.02966 28.358 11.73C28.358 15.4303 25.3221 18.43 21.5773 18.43C19.8989 18.43 18.363 17.8275 17.179 16.8294Z" fill="#ED0006" /> <path fillRule="evenodd" clipRule="evenodd" d="M17.179 16.8294C18.6369 15.6005 19.5614 13.7719 19.5614 11.73C19.5614 9.68801 18.6369 7.85941 17.179 6.63051C18.363 5.63247 19.8989 5.02997 21.5772 5.02997C25.3221 5.02997 28.3579 8.02966 28.3579 11.73C28.3579 15.4303 25.3221 18.43 21.5772 18.43C19.8989 18.43 18.363 17.8275 17.179 16.8294Z" fill="#F9A000" /> <path fillRule="evenodd" clipRule="evenodd" d="M17.179 16.8294C18.6369 15.6005 19.5614 13.7719 19.5614 11.73C19.5614 9.68804 18.6369 7.85945 17.179 6.63054C15.7211 7.85945 14.7966 9.68804 14.7966 11.73C14.7966 13.7719 15.7211 15.6005 17.179 16.8294Z" fill="#FF5E00" /> </symbol>
|
|
40
|
+
<symbol id="PayPal" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M14.6142 18.4483L14.8349 16.9992L14.3432 16.9873H11.9953L13.627 6.29368C13.6321 6.2613 13.6485 6.23124 13.6725 6.20986C13.6967 6.18847 13.7274 6.17674 13.7596 6.17674H17.7185C19.033 6.17674 19.94 6.45938 20.4135 7.01732C20.6355 7.27906 20.7769 7.55265 20.8453 7.85362C20.9171 8.16949 20.9183 8.54683 20.8483 9.00714L20.8432 9.04062V9.3356L21.0652 9.46561C21.2521 9.56813 21.4008 9.68544 21.5147 9.81973C21.7046 10.0436 21.8274 10.3281 21.8793 10.6652C21.933 11.012 21.9153 11.4248 21.8274 11.892C21.7261 12.4294 21.5624 12.8976 21.3412 13.2805C21.1378 13.6334 20.8787 13.9262 20.5709 14.153C20.2772 14.3686 19.9282 14.5322 19.5335 14.6369C19.1511 14.7398 18.7151 14.7917 18.2368 14.7917H17.9287C17.7085 14.7917 17.4945 14.8737 17.3265 15.0207C17.158 15.1708 17.0467 15.3758 17.0125 15.6L16.9892 15.7305L16.5992 18.2848L16.5816 18.3785C16.5768 18.4082 16.5688 18.423 16.557 18.433C16.5465 18.4422 16.5313 18.4483 16.5166 18.4483H14.6142Z" fill="#28356A" /> <path fillRule="evenodd" clipRule="evenodd" d="M21.2756 9.07468C21.2639 9.15276 21.2503 9.23255 21.2352 9.31454C20.7131 12.0852 18.9269 13.0423 16.6456 13.0423H15.4841C15.2051 13.0423 14.9699 13.2517 14.9265 13.5361L14.1634 18.5394C14.1351 18.7262 14.2744 18.8945 14.4567 18.8945H16.5169C16.7608 18.8945 16.968 18.7113 17.0064 18.4626L17.0267 18.3545L17.4146 15.8103L17.4395 15.6707C17.4774 15.4212 17.6852 15.2379 17.9291 15.2379H18.2372C20.2331 15.2379 21.7957 14.4004 22.2524 11.9766C22.4431 10.9641 22.3444 10.1186 21.8396 9.52399C21.6868 9.34473 21.4973 9.19589 21.2756 9.07468Z" fill="#298FC2" /> <path fillRule="evenodd" clipRule="evenodd" d="M20.7293 8.84963C20.6495 8.82556 20.5672 8.80381 20.4828 8.78413C20.3979 8.76495 20.311 8.74797 20.2215 8.73306C19.9083 8.68076 19.5651 8.65595 19.1975 8.65595H16.0945C16.018 8.65595 15.9454 8.67379 15.8805 8.70605C15.7373 8.77717 15.6311 8.9172 15.6053 9.08864L14.9451 13.4102L14.9262 13.5362C14.9696 13.2517 15.2047 13.0424 15.4838 13.0424H16.6453C18.9266 13.0424 20.7128 12.0847 21.2349 9.31458C21.2505 9.23259 21.2636 9.1528 21.2753 9.07471C21.1433 9.00225 21.0002 8.9403 20.8462 8.88751C20.8081 8.87444 20.7689 8.86185 20.7293 8.84963Z" fill="#22284F" /> <path fillRule="evenodd" clipRule="evenodd" d="M15.6054 9.08865C15.6312 8.91721 15.7375 8.77718 15.8807 8.70655C15.9461 8.67417 16.0182 8.65633 16.0947 8.65633H19.1977C19.5653 8.65633 19.9085 8.68126 20.2216 8.73356C20.3111 8.74834 20.398 8.76545 20.4829 8.78463C20.5673 8.80418 20.6496 8.82606 20.7294 8.85001C20.769 8.86223 20.8083 8.87493 20.8467 8.88752C21.0007 8.94031 21.1439 9.00275 21.276 9.07472C21.4313 8.05085 21.2747 7.35373 20.7391 6.72248C20.1486 6.02743 19.0829 5.73001 17.7192 5.73001H13.7601C13.4815 5.73001 13.2439 5.93933 13.2009 6.22429L11.5519 17.0279C11.5194 17.2416 11.6789 17.4344 11.8874 17.4344H14.3316L15.6054 9.08865Z" fill="#28356A" /> </symbol>
|
|
41
|
+
<symbol id="Pinterest" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <path d="M13.6372 0.111996C10.7664 -0.282916 7.84967 0.374216 5.42555 1.96205C3.00144 3.54988 1.23369 5.96118 0.448715 8.75069C-0.336255 11.5402 -0.0854291 14.5195 1.15488 17.1385C2.39519 19.7575 4.54121 21.8393 7.19668 22.9995C7.12486 22.0779 7.19078 21.1506 7.39224 20.2484C7.61421 19.2417 8.9472 13.6938 8.9472 13.6938C8.68176 13.0988 8.54911 12.4532 8.55846 11.8017C8.55846 10.02 9.58669 8.69062 10.8657 8.69062C11.0955 8.68728 11.3233 8.73345 11.5336 8.826C11.7439 8.91855 11.9319 9.0553 12.0846 9.22696C12.2374 9.39863 12.3514 9.60117 12.4189 9.82083C12.4864 10.0405 12.5058 10.2721 12.4758 10.4999C12.4758 11.5798 11.7823 13.2139 11.42 14.7473C11.3484 15.0285 11.3438 15.3226 11.4067 15.6059C11.4696 15.8891 11.5982 16.1537 11.7821 16.3782C11.9659 16.6027 12.2 16.7809 12.4653 16.8983C12.7307 17.0158 13.0199 17.0693 13.3097 17.0545C15.5869 17.0545 17.1131 14.1378 17.1131 10.6943C17.1131 8.05472 15.365 6.07744 12.1423 6.07744C11.3713 6.04748 10.6022 6.17453 9.88176 6.45089C9.16134 6.72724 8.5046 7.14712 7.95141 7.68505C7.39823 8.22297 6.96014 8.86772 6.66375 9.58013C6.36736 10.2925 6.21884 11.0578 6.22723 11.8293C6.19288 12.6852 6.469 13.5246 7.00471 14.1929C7.10481 14.2677 7.1779 14.3729 7.21296 14.4928C7.24802 14.6127 7.24315 14.7408 7.19907 14.8576C7.14388 15.0784 7.00471 15.6051 6.94951 15.7983C6.93803 15.8638 6.91133 15.9257 6.87155 15.979C6.83178 16.0323 6.78004 16.0755 6.72051 16.1052C6.66098 16.1348 6.59531 16.1501 6.52881 16.1497C6.4623 16.1493 6.39681 16.1333 6.33761 16.103C4.67708 15.4383 3.8948 13.611 3.8948 11.5246C3.8948 8.10872 6.75515 4.01977 12.4782 4.01977C17.0327 4.01977 20.061 7.35164 20.061 10.9151C20.061 15.6051 17.449 19.1314 13.5893 19.1314C13.0124 19.1498 12.4402 19.0225 11.9255 18.7612C11.4109 18.4999 10.9704 18.113 10.6449 17.6364C10.6449 17.6364 9.95143 20.4151 9.81466 20.9407C9.53545 21.8486 9.12346 22.7101 8.59205 23.4975C9.69947 23.8334 10.8501 24.0014 12.0067 23.9966C13.5827 23.9978 15.1436 23.6882 16.5998 23.0854C18.056 22.4826 19.379 21.5985 20.493 20.4837C21.6071 19.3688 22.4903 18.0452 23.092 16.5886C23.6938 15.132 24.0024 13.5709 24 11.9949C23.9985 9.09735 22.9487 6.2982 21.0444 4.11429C19.1401 1.93038 16.51 0.509209 13.6396 0.113195L13.6372 0.111996Z" fill="currentColor" /></symbol>
|
|
42
|
+
<symbol id="Stripe" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M18.2682 8.14192L16.541 8.52349V7.08202L18.2682 6.70752V8.14192ZM21.8599 8.94038C21.1856 8.94038 20.7521 9.26542 20.5113 9.49153L20.4218 9.05344H18.908V17.2924L20.6282 16.9179L20.6351 14.9183C20.8828 15.102 21.2475 15.3634 21.853 15.3634C23.0847 15.3634 24.2063 14.3459 24.2063 12.106C24.1995 10.0568 23.0641 8.94038 21.8599 8.94038ZM21.4471 13.8089C21.0411 13.8089 20.8002 13.6605 20.6351 13.4768L20.6282 10.8553C20.8071 10.6504 21.0548 10.509 21.4471 10.509C22.0732 10.509 22.5067 11.2298 22.5067 12.1554C22.5067 13.1023 22.0801 13.8089 21.4471 13.8089ZM29.6286 12.1766C29.6286 10.3677 28.7754 8.94038 27.1446 8.94038C25.5069 8.94038 24.5161 10.3677 24.5161 12.1625C24.5161 14.2894 25.6858 15.3634 27.3648 15.3634C28.1836 15.3634 28.8029 15.1726 29.2708 14.9041V13.4909C28.8029 13.7312 28.2662 13.8795 27.585 13.8795C26.9175 13.8795 26.3257 13.6393 26.2501 12.8055H29.6148C29.6148 12.7666 29.6173 12.6782 29.6202 12.5763L29.6202 12.5761C29.624 12.4377 29.6286 12.2743 29.6286 12.1766ZM26.2294 11.5054C26.2294 10.7069 26.7042 10.3748 27.1377 10.3748C27.5574 10.3748 28.0047 10.7069 28.0047 11.5054H26.2294ZM16.5409 9.06052H18.2681V15.2433H16.5409V9.06052ZM14.58 9.06051L14.6901 9.5834C15.0961 8.82026 15.9012 8.97572 16.1214 9.06051V10.6857C15.908 10.608 15.22 10.509 14.814 11.0531V15.2433H13.0937V9.06051H14.58ZM11.2495 7.52717L9.57056 7.8946L9.56368 13.5545C9.56368 14.6003 10.3275 15.3705 11.3459 15.3705C11.9101 15.3705 12.323 15.2645 12.55 15.1373V13.7029C12.3298 13.7947 11.2426 14.1198 11.2426 13.074V10.5656H12.55V9.0605H11.2426L11.2495 7.52717ZM7.18295 10.4737C6.81826 10.4737 6.59807 10.5797 6.59807 10.8553C6.59807 11.1562 6.97702 11.2885 7.44715 11.4527C8.21358 11.7204 9.22234 12.0728 9.2266 13.3779C9.2266 14.6427 8.24262 15.3705 6.81138 15.3705C6.21961 15.3705 5.5728 15.2504 4.93287 14.9677V13.286C5.51087 13.611 6.24026 13.8513 6.81138 13.8513C7.19671 13.8513 7.47195 13.7453 7.47195 13.4203C7.47195 13.087 7.06116 12.9346 6.56522 12.7507C5.80994 12.4706 4.85718 12.1173 4.85718 10.9401C4.85718 9.6894 5.78611 8.9404 7.18295 8.9404C7.75407 8.9404 8.31831 9.03225 8.88944 9.26543V10.926C8.36648 10.6362 7.70591 10.4737 7.18295 10.4737Z" fill="#6461FC" /> </symbol>
|
|
43
|
+
<symbol id="Twitter" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 22"> <path fillRule="evenodd" clipRule="evenodd" d="M22.3622 5.78508C22.3713 6.01826 22.3743 6.25134 22.3743 6.48452C22.3743 13.5541 17.4012 21.7156 8.30706 21.7156C5.51351 21.7156 2.91591 20.8252 0.727295 19.3095C1.11417 19.3519 1.50708 19.3838 1.90602 19.3838C4.22225 19.3838 6.3556 18.5251 8.04781 17.0836C5.88432 17.0518 4.05746 15.4938 3.4274 13.3739C3.72987 13.4375 4.04136 13.4694 4.35991 13.4694C4.80909 13.4694 5.2452 13.4059 5.66323 13.2787C3.39924 12.7912 1.69399 10.629 1.69399 8.03221C1.69399 8.00041 1.69399 7.98975 1.69399 7.96855C2.36123 8.36072 3.12492 8.60438 3.93585 8.63617C2.60741 7.67165 1.73416 6.02884 1.73416 4.17399C1.73416 3.19887 1.97734 2.27671 2.40542 1.48178C4.84324 4.7251 8.48795 6.85555 12.5969 7.07814C12.5125 6.68597 12.4693 6.27271 12.4693 5.85934C12.4693 2.90219 14.683 0.506744 17.4142 0.506744C18.8361 0.506744 20.1204 1.15338 21.0217 2.19209C22.1502 1.95891 23.2073 1.51378 24.164 0.899035C23.7932 2.14973 23.0104 3.19882 21.9874 3.85597C22.9883 3.72878 23.9429 3.44282 24.8282 3.01886C24.164 4.08937 23.3279 5.03254 22.3622 5.78508Z" fill="currentColor" /> </symbol>
|
|
44
|
+
<symbol id="Facebook" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <path fillRule="evenodd" clipRule="evenodd" d="M0 12C0 17.9333 4.33333 22.8667 10 23.8667L10.0669 23.8132C10.0446 23.8088 10.0223 23.8045 10 23.8V15.3333H7V12H10V9.33333C10 6.33333 11.9333 4.66667 14.6667 4.66667C15.5333 4.66667 16.4667 4.8 17.3333 4.93333V8H15.8C14.3333 8 14 8.73333 14 9.66667V12H17.2L16.6667 15.3333H14V23.8C13.9777 23.8045 13.9554 23.8088 13.9331 23.8132L14 23.8667C19.6667 22.8667 24 17.9333 24 12C24 5.4 18.6 0 12 0C5.4 0 0 5.4 0 12Z" fill="currentColor" /> </symbol>
|
|
45
|
+
<symbol id="Visa" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 34 24"> <path d="M0 3C0 1.34315 1.34315 0 3 0H31C32.6569 0 34 1.34315 34 3V21C34 22.6569 32.6569 24 31 24H3C1.34315 24 0 22.6569 0 21V3Z" fill="white" /> <rect x="0.5" y="0.5" width="33" height="23" rx="2.5" stroke="#fff" /> <path fillRule="evenodd" clipRule="evenodd" d="M10.7503 15.8582H8.69056L7.146 9.79237C7.07269 9.51334 6.91703 9.26666 6.68806 9.1504C6.11664 8.85823 5.48696 8.6257 4.80005 8.50843V8.27489H8.11813C8.57607 8.27489 8.91953 8.6257 8.97677 9.03313L9.77817 13.4086L11.8369 8.27489H13.8394L10.7503 15.8582ZM14.9843 15.8582H13.039L14.6408 8.27489H16.5861L14.9843 15.8582ZM19.1028 10.3757C19.16 9.96728 19.5035 9.73374 19.9042 9.73374C20.5338 9.6751 21.2197 9.79238 21.7922 10.0835L22.1356 8.45081C21.5632 8.21727 20.9335 8.1 20.3621 8.1C18.4741 8.1 17.1003 9.15041 17.1003 10.6082C17.1003 11.7173 18.0734 12.2996 18.7603 12.6504C19.5035 13.0002 19.7897 13.2337 19.7324 13.5835C19.7324 14.1082 19.16 14.3418 18.5886 14.3418C17.9017 14.3418 17.2147 14.1669 16.5861 13.8747L16.2426 15.5085C16.9295 15.7996 17.6727 15.9169 18.3596 15.9169C20.4766 15.9745 21.7922 14.9251 21.7922 13.35C21.7922 11.3665 19.1028 11.2502 19.1028 10.3757ZM28.6 15.8582L27.0555 8.27489H25.3965C25.053 8.27489 24.7095 8.50843 24.5951 8.85823L21.7349 15.8582H23.7374L24.1371 14.7502H26.5976L26.8265 15.8582H28.6ZM25.6827 10.3171L26.2541 13.1751H24.6523L25.6827 10.3171Z" fill="#172B85" /> </symbol>
|
|
46
|
+
<symbol id="Clock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18" d="M128 80v48m41.6 24L128 128m56.2-28.3h40v-40"/><path d="M190.2 190.2a88 88 0 1 1 0-124.4l34 33.9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18"/></symbol>
|
|
47
|
+
<symbol id="MapPin" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><circle cx="128" cy="104" r="32" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><path d="M208 104c0 72-80 128-80 128s-80-56-80-128a80 80 0 0 1 160 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/></symbol>
|
|
48
|
+
<symbol id="Ellipsis" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 18" ><circle opacity="0.6" cx="2" cy="11" r="2" fill="currentColor"/><circle opacity="0.6" cx="10" cy="11" r="2" fill="currentColor"/><circle opacity="0.6" cx="18" cy="11" r="2" fill="currentColor"/></symbol>
|
|
49
|
+
<symbol id="Checked" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 19 18"><path d="M15.6875 5.0625L7.8125 12.9375L3.875 9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></symbol>
|
|
50
|
+
<symbol id="ArrowElbowDownRight" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor"><rect width="256" height="256" fill="none"></rect><polyline points="160 128 208 176 160 224" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline><polyline points="64 32 64 176 208 176" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline></symbol>
|
|
51
|
+
<symbol id="Info" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.25-.75a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75V12a.75.75 0 0 1-.75-.75Zm2.438-3.375a1.125 1.125 0 1 1-2.25 0 1.125 1.125 0 0 1 2.25 0Z" fill="currentColor"/></symbol>
|
|
52
|
+
<symbol id="ArrowsClockwise" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><polyline points="176.2 99.7 224.2 99.7 224.2 51.7" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline><path d="M65.8,65.8a87.9,87.9,0,0,1,124.4,0l34,33.9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></path><polyline points="79.8 156.3 31.8 156.3 31.8 204.3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline><path d="M190.2,190.2a87.9,87.9,0,0,1-124.4,0l-34-33.9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></path></symbol>
|
|
53
|
+
<symbol id="DotsThree" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><circle cx="128" cy="128" r="12"></circle><circle cx="192" cy="128" r="12"></circle><circle cx="64" cy="128" r="12"></circle></symbol>
|
|
54
|
+
<symbol id="Envelop" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m224 56-96 88-96-88"/><path d="M32 56h192v136a8 8 0 0 1-8 8H40a8 8 0 0 1-8-8V56h0Zm78.5 72-76 69.7m187 0-76-69.7" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
55
|
+
<symbol id="Tag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path d="M122.7 25.9 42 42l-16.1 80.7a8 8 0 0 0 2.2 7.2l104.4 104.4a7.9 7.9 0 0 0 11.3 0l90.5-90.5a7.9 7.9 0 0 0 0-11.3L129.9 28.1a8 8 0 0 0-7.2-2.2Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><circle cx="84" cy="84" r="12" fill="currentColor"/></symbol>
|
|
56
|
+
<symbol id="Ruler" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><rect x="26.2" y="82.7" width="203.6" height="90.51" rx="8" transform="translate(-53 128) rotate(-45)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></rect><line x1="132" y1="60" x2="164" y2="92" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line><line x1="96" y1="96" x2="128" y2="128" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line><line x1="60" y1="132" x2="92" y2="164" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line></symbol>
|
|
57
|
+
<symbol id="Bag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><rect x="32" y="72" width="192" height="144" rx="8" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></rect><path d="M88,104V72a40,40,0,0,1,80,0v32" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></path></symbol>
|
|
58
|
+
</svg>
|
package/public/logo.svg
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<svg width="176" height="38" viewBox="0 0 176 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="19" cy="19" r="19" fill="url(#paint0_linear_2299_155683)"/>
|
|
3
|
+
<mask id="mask0_2299_155683" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="38" height="38">
|
|
4
|
+
<circle cx="19" cy="19" r="19" fill="url(#paint1_linear_2299_155683)"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_2299_155683)">
|
|
7
|
+
<path d="M14.9639 14.9555L26.1062 12.4082L6.22236 39.3474L-4 39.3475L14.9639 14.9555Z" fill="url(#paint2_linear_2299_155683)"/>
|
|
8
|
+
<path d="M-3.89694 27.392L14.9639 3V14.9555L-3.89694 39.3475V27.392Z" fill="#B7C8F2"/>
|
|
9
|
+
<path d="M14.9639 3H20.5647C24.0743 3 26.9194 5.8451 26.9194 9.35471C26.9194 12.4479 24.4119 14.9555 21.3186 14.9555H14.9639V3Z" fill="#E7EEFF"/>
|
|
10
|
+
<path d="M15.1961 31.8844L30 28.5L3.58174 64.2924L-10 64.2924L15.1961 31.8844Z" fill="url(#paint3_linear_2299_155683)"/>
|
|
11
|
+
<path d="M-9.86307 48.408L15.1961 16V31.8845L-9.86307 64.2924V48.408Z" fill="#B7C8F2"/>
|
|
12
|
+
<path d="M15.1961 16H23.1383C27.5247 16 31.0805 19.5559 31.0805 23.9422V24.8845C31.0805 28.7505 27.9465 31.8845 24.0805 31.8845H15.1961V16Z" fill="#E7EEFF"/>
|
|
13
|
+
</g>
|
|
14
|
+
<path d="M47 23.348H54.952C59.74 23.348 62.148 21.276 62.148 17.832C62.148 15.172 60.468 13.436 57.584 13.128V13.1C60.104 12.512 61.504 10.86 61.504 8.9C61.504 6.016 59.572 4.308 55.176 4.308H47V23.348ZM50.528 20.548V14.864H54.784C57.612 14.864 58.564 15.928 58.564 17.776C58.564 19.708 57.304 20.548 54.504 20.548H50.528ZM50.528 12.232V7.08H54.672C56.884 7.08 57.92 8.004 57.92 9.628C57.92 11.28 56.744 12.232 54.532 12.232H50.528Z" fill="#1A3470"/>
|
|
15
|
+
<path d="M68.0109 23.628C70.3909 23.628 72.5189 22.284 73.2189 19.204H73.2749V23.348H76.4389V15.228C76.4389 11.196 74.0589 9.18 70.2789 9.18C66.7509 9.18 64.5109 10.804 64.0349 13.38L67.0309 14.36C67.2829 12.652 68.5429 11.812 70.1109 11.812C71.9309 11.812 73.0789 12.736 73.1069 14.808L69.6349 15.256C66.3589 15.648 63.5589 16.6 63.5589 19.68C63.5589 22.34 65.4629 23.628 68.0109 23.628ZM66.9749 19.344C66.9749 17.888 68.3189 17.524 70.0829 17.3L73.1629 16.88C73.0789 18.868 71.5109 21.052 69.0469 21.052C67.8429 21.052 66.9749 20.52 66.9749 19.344Z" fill="#1A3470"/>
|
|
16
|
+
<path d="M84.9831 23.628C88.8471 23.628 91.2271 21.948 91.2271 18.952C91.2271 16.012 88.6231 15.452 86.3271 15.06L84.4511 14.78C83.1351 14.556 82.2951 14.248 82.2951 13.212C82.2951 12.092 83.2471 11.532 84.6191 11.532C86.2431 11.532 87.3071 12.316 87.4751 13.94L90.7231 13.436C90.4151 10.496 87.7831 9.18 84.7311 9.18C81.4831 9.18 78.9351 10.748 78.9351 13.464C78.9351 15.984 80.9791 16.824 82.9111 17.132L85.0671 17.468C86.8031 17.748 87.7551 18.084 87.7551 19.26C87.7551 20.436 86.8031 21.164 84.9551 21.164C83.2471 21.164 82.0711 20.352 81.8751 18.504L78.5151 19.064C78.7111 22.088 81.2311 23.628 84.9831 23.628Z" fill="#1A3470"/>
|
|
17
|
+
<path d="M99.4466 23.628C102.975 23.628 105.187 21.948 105.803 19.232L102.667 18.56C102.331 20.268 101.183 21.052 99.5586 21.052C97.2906 21.052 96.1426 19.568 96.0586 16.712H105.859C105.859 16.516 105.887 16.376 105.887 15.9C105.887 11.532 103.423 9.18 99.5306 9.18C95.1906 9.18 92.6146 12.204 92.6146 16.6C92.6146 20.912 95.1066 23.628 99.4466 23.628ZM96.1986 14.724C96.5346 12.624 97.6546 11.532 99.4466 11.532C101.267 11.532 102.303 12.68 102.415 14.724H96.1986Z" fill="#1A3470"/>
|
|
18
|
+
<path d="M115.33 23.656C119.698 23.656 122.806 21.472 122.806 17.608C122.806 13.912 120.286 12.708 115.582 12.008C112.782 11.56 111.802 10.972 111.802 9.292C111.802 7.78 113.09 6.94 115.05 6.94C117.234 6.94 118.69 7.724 119.222 10.328L122.19 9.18C121.574 5.596 118.942 4 115.134 4C110.962 4 108.274 6.212 108.274 9.572C108.274 12.96 110.542 14.248 115.106 14.948C117.766 15.368 119.166 15.9 119.166 17.804C119.166 19.568 117.71 20.716 115.498 20.716C113.034 20.716 111.298 19.848 110.85 16.824L107.462 17.72C107.826 21.78 110.682 23.656 115.33 23.656Z" fill="#1A3470"/>
|
|
19
|
+
<path d="M129.923 23.628C130.931 23.628 131.995 23.488 132.751 23.32L133.115 20.576C132.583 20.716 131.799 20.884 130.903 20.884C129.783 20.884 129.167 20.52 129.167 19.148V12.092H132.975V9.46H129.167V5.652H126.787C126.591 8.424 125.723 9.544 123.455 10.02V12.092H125.807V19.904C125.807 22.676 127.347 23.628 129.923 23.628Z" fill="#1A3470"/>
|
|
20
|
+
<path d="M141.421 23.628C145.369 23.628 148.533 21.136 148.533 16.404C148.533 11.672 145.369 9.18 141.421 9.18C137.501 9.18 134.309 11.672 134.309 16.404C134.309 21.136 137.501 23.628 141.421 23.628ZM137.781 16.404C137.781 13.52 139.237 11.924 141.421 11.924C143.633 11.924 145.061 13.52 145.061 16.404C145.061 19.26 143.633 20.912 141.421 20.912C139.237 20.912 137.781 19.26 137.781 16.404Z" fill="#1A3470"/>
|
|
21
|
+
<path d="M151.034 23.348H154.394V16.572C154.394 13.828 155.682 12.456 158.09 12.456C158.678 12.456 159.35 12.512 159.742 12.624L159.714 9.404C159.378 9.292 158.762 9.18 158.258 9.18C156.242 9.18 154.954 10.104 154.226 13.912H154.142V9.46H151.034V23.348Z" fill="#1A3470"/>
|
|
22
|
+
<path d="M167.024 23.628C170.552 23.628 172.764 21.948 173.38 19.232L170.244 18.56C169.908 20.268 168.76 21.052 167.136 21.052C164.868 21.052 163.72 19.568 163.636 16.712H173.436C173.436 16.516 173.464 16.376 173.464 15.9C173.464 11.532 171 9.18 167.108 9.18C162.768 9.18 160.192 12.204 160.192 16.6C160.192 20.912 162.684 23.628 167.024 23.628ZM163.776 14.724C164.112 12.624 165.232 11.532 167.024 11.532C168.844 11.532 169.88 12.68 169.992 14.724H163.776Z" fill="#1A3470"/>
|
|
23
|
+
<path d="M49.485 35.077C50.577 35.077 51.431 34.426 51.578 33.229L50.878 33.068C50.78 34.006 50.241 34.454 49.499 34.454C48.617 34.454 48.029 33.768 48.029 32.627C48.029 31.472 48.603 30.8 49.499 30.8C50.241 30.8 50.71 31.206 50.864 32.06L51.557 31.92C51.375 30.814 50.584 30.177 49.541 30.177C48.232 30.177 47.322 31.052 47.322 32.627C47.322 34.195 48.218 35.077 49.485 35.077ZM53.459 35H56.399V34.384H54.152V30.24H53.459V35ZM60.011 35.07C61.264 35.07 62.209 34.195 62.209 32.62C62.209 31.045 61.264 30.17 60.011 30.17C58.765 30.17 57.813 31.045 57.813 32.62C57.813 34.195 58.765 35.07 60.011 35.07ZM58.541 32.62C58.541 31.472 59.129 30.793 60.011 30.793C60.9 30.793 61.488 31.472 61.488 32.62C61.488 33.768 60.9 34.447 60.011 34.447C59.129 34.447 58.541 33.768 58.541 32.62ZM65.8062 35.077C66.8492 35.077 67.5982 34.545 67.5982 33.607C67.5982 32.676 66.9332 32.389 65.8762 32.214C65.0992 32.088 64.8052 31.92 64.8052 31.437C64.8052 31.003 65.1692 30.772 65.7152 30.772C66.3172 30.772 66.6952 30.989 66.8072 31.703L67.4302 31.521C67.3182 30.576 66.6672 30.17 65.7362 30.17C64.7492 30.17 64.1122 30.695 64.1122 31.493C64.1122 32.333 64.6652 32.641 65.6802 32.802C66.4502 32.935 66.8772 33.068 66.8772 33.642C66.8772 34.132 66.4642 34.468 65.8272 34.468C65.1762 34.468 64.6862 34.258 64.5672 33.39L63.8952 33.558C63.9932 34.622 64.7142 35.077 65.8062 35.077ZM69.6022 35H72.7382V34.391H70.2952V32.823H72.3812V32.221H70.2952V30.849H72.7312V30.24H69.6022V35ZM74.7349 35H76.2189C77.9129 35 78.7949 34.16 78.7949 32.613C78.7949 31.073 77.9129 30.24 76.2189 30.24H74.7349V35ZM75.4279 34.412V30.828H76.1839C77.5209 30.828 78.0669 31.486 78.0669 32.613C78.0669 33.747 77.5209 34.412 76.1839 34.412H75.4279ZM83.6741 35H85.5221C86.7401 35 87.3281 34.475 87.3281 33.628C87.3281 32.956 86.9221 32.536 86.2081 32.452V32.445C86.7961 32.291 87.1671 31.899 87.1671 31.395C87.1671 30.66 86.6911 30.24 85.6201 30.24H83.6741V35ZM84.3671 34.419V32.809H85.5431C86.3551 32.809 86.6141 33.117 86.6141 33.635C86.6141 34.188 86.2501 34.419 85.4451 34.419H84.3671ZM84.3671 32.242V30.814H85.5291C86.1661 30.814 86.4531 31.073 86.4531 31.521C86.4531 31.983 86.1101 32.242 85.4801 32.242H84.3671ZM89.3605 35H92.4965V34.391H90.0535V32.823H92.1395V32.221H90.0535V30.849H92.4895V30.24H89.3605V35ZM95.6334 35H96.3264V30.821H97.8174V30.24H94.1424V30.821H95.6334V35ZM101.343 30.24H100.405L98.7952 35H99.5512L99.9012 33.873H101.826L102.176 35H102.946L101.343 30.24ZM100.09 33.278L100.86 30.793L101.637 33.278H100.09Z" fill="#1A3470"/>
|
|
24
|
+
<defs>
|
|
25
|
+
<linearGradient id="paint0_linear_2299_155683" x1="12" y1="20.5" x2="40.5" y2="4" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop offset="0.0677083" stop-color="#1C3670"/>
|
|
27
|
+
<stop offset="1" stop-color="#B6C6ED"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<linearGradient id="paint1_linear_2299_155683" x1="19" y1="-4.02331e-07" x2="32.5" y2="-9.5" gradientUnits="userSpaceOnUse">
|
|
30
|
+
<stop stop-color="#001947"/>
|
|
31
|
+
<stop offset="1" stop-color="#001947" stop-opacity="0"/>
|
|
32
|
+
</linearGradient>
|
|
33
|
+
<linearGradient id="paint2_linear_2299_155683" x1="15.569" y1="13.9135" x2="20.361" y2="19.778" gradientUnits="userSpaceOnUse">
|
|
34
|
+
<stop stop-color="#9FB8EF"/>
|
|
35
|
+
<stop offset="0.934068" stop-color="#0A1C46"/>
|
|
36
|
+
</linearGradient>
|
|
37
|
+
<linearGradient id="paint3_linear_2299_155683" x1="16" y1="30.5" x2="22.3667" y2="38.2918" gradientUnits="userSpaceOnUse">
|
|
38
|
+
<stop stop-color="#9FB8EF"/>
|
|
39
|
+
<stop offset="0.934068" stop-color="#0A1C46"/>
|
|
40
|
+
</linearGradient>
|
|
41
|
+
</defs>
|
|
42
|
+
</svg>
|