├── .env.template ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .storybook ├── main.ts ├── next-intl.ts └── preview.ts ├── README.md ├── algolia-config.json ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── B2C_Storefront_Open_Graph.png ├── Logo.png ├── Logo.svg ├── algolia-import.png ├── file.svg ├── globe.svg ├── images │ ├── banner-section │ │ └── Image.jpg │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ └── post-3.jpg │ ├── brands │ │ ├── Balenciaga.svg │ │ ├── Miu-Miu.svg │ │ ├── Nike.svg │ │ └── Prada.svg │ ├── categories │ │ ├── accessories.png │ │ ├── boots.png │ │ ├── sandals.png │ │ ├── shirt.png │ │ ├── sneakers.png │ │ └── sport.png │ ├── hero │ │ └── Image.jpg │ ├── placeholder.svg │ ├── product │ │ ├── placeholder.jpg │ │ ├── review-image-1.jpg │ │ ├── review-image-2.jpg │ │ ├── review-image-3.jpg │ │ └── seller-avatar.jpg │ └── shop-by-styles │ │ └── Image.jpg ├── next.svg ├── talkjs-placeholder.jpg ├── vercel.svg └── window.svg ├── src ├── app │ ├── [locale] │ │ ├── (checkout) │ │ │ ├── checkout │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── (main) │ │ │ ├── cart │ │ │ │ └── page.tsx │ │ │ ├── categories │ │ │ │ ├── [category] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── collections │ │ │ │ └── [handle] │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── order │ │ │ │ └── [id] │ │ │ │ │ └── confirmed │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── products │ │ │ │ └── [handle] │ │ │ │ │ └── page.tsx │ │ │ ├── sellers │ │ │ │ └── [handle] │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── reviews │ │ │ │ │ └── page.tsx │ │ │ └── user │ │ │ │ ├── addresses │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── messages │ │ │ │ └── page.tsx │ │ │ │ ├── orders │ │ │ │ ├── [id] │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── request-success │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── return │ │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── register │ │ │ │ └── page.tsx │ │ │ │ ├── returns │ │ │ │ └── page.tsx │ │ │ │ ├── reviews │ │ │ │ ├── page.tsx │ │ │ │ └── written │ │ │ │ │ └── page.tsx │ │ │ │ ├── settings │ │ │ │ └── page.tsx │ │ │ │ └── wishlist │ │ │ │ └── page.tsx │ │ └── (reset-password) │ │ │ ├── layout.tsx │ │ │ └── reset-password │ │ │ └── page.tsx │ ├── colors.css │ ├── favicon.ico │ ├── global-error.tsx │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── providers.tsx │ └── robots.ts ├── components │ ├── atoms │ │ ├── Avatar │ │ │ └── Avatar.tsx │ │ ├── Badge │ │ │ └── Badge.tsx │ │ ├── Breadcrumbs │ │ │ └── Breadcrumbs.tsx │ │ ├── Button │ │ │ └── Button.tsx │ │ ├── Card │ │ │ └── Card.tsx │ │ ├── Checkbox │ │ │ └── Checkbox.tsx │ │ ├── Chip │ │ │ └── Chip.tsx │ │ ├── Divider │ │ │ └── Divider.tsx │ │ ├── IconButton │ │ │ └── IconButton.tsx │ │ ├── Indicator │ │ │ └── Indicator.tsx │ │ ├── Input │ │ │ └── Input.tsx │ │ ├── InteractiveStarRating │ │ │ └── InteractiveStarRating.tsx │ │ ├── Label │ │ │ └── Label.tsx │ │ ├── Link │ │ │ └── Link.tsx │ │ ├── LogoutButton │ │ │ └── LogoutButton.tsx │ │ ├── NavigationItem │ │ │ └── NavigationItem.tsx │ │ ├── PaginationButton │ │ │ └── PaginationButton.tsx │ │ ├── Radio │ │ │ └── Radio.tsx │ │ ├── Spinner │ │ │ └── Spinner.tsx │ │ ├── StarRating │ │ │ └── StarRating.tsx │ │ ├── TabsTrigger │ │ │ └── TabsTrigger.tsx │ │ ├── Textarea │ │ │ └── Textarea.tsx │ │ └── index.ts │ ├── cells │ │ ├── ActiveFilterElement │ │ │ └── ActiveFilterElement.tsx │ │ ├── AddressSelect │ │ │ └── AddressSelect.tsx │ │ ├── BrandFilter │ │ │ └── BrandFilter.tsx │ │ ├── Carousel │ │ │ └── Carousel.tsx │ │ ├── CartDropdown │ │ │ └── CartDropdown.tsx │ │ ├── CartItemsFooter │ │ │ └── CartItemsFooter.tsx │ │ ├── CartItemsHeader │ │ │ └── CartItemsHeader.tsx │ │ ├── CartItemsProducts │ │ │ └── CartItemsProducts.tsx │ │ ├── ChatBox │ │ │ └── ChatBox.tsx │ │ ├── ColorFilter │ │ │ └── ColorFilter.tsx │ │ ├── ConditionFilter │ │ │ └── ConditionFilter.tsx │ │ ├── CountrySelect │ │ │ └── CountrySelect.tsx │ │ ├── HeadingCategories │ │ │ └── HeadingCategories.tsx │ │ ├── LabeledInput │ │ │ └── LabeledInput.tsx │ │ ├── MobileNavbar │ │ │ └── MobileNavbar.tsx │ │ ├── Navbar │ │ │ └── Navbar.tsx │ │ ├── OrderAddresses │ │ │ └── OrderAddresses.tsx │ │ ├── OrderCancel │ │ │ └── OrderCancel.tsx │ │ ├── OrderProductListItem │ │ │ └── OrderProductListItem.tsx │ │ ├── OrderReturn │ │ │ └── OrderReturn.tsx │ │ ├── OrderTimeline │ │ │ └── OrderTimeline.tsx │ │ ├── OrderTrack │ │ │ └── OrderTrack.tsx │ │ ├── Pagination │ │ │ └── Pagination.tsx │ │ ├── PasswordValidator │ │ │ └── PasswordValidator.tsx │ │ ├── PriceFilter │ │ │ └── PriceFilter.tsx │ │ ├── ProductAdditionalAttributes │ │ │ └── ProductAdditionalAttributes.tsx │ │ ├── ProductCarousel │ │ │ └── ProductCarousel.tsx │ │ ├── ProductDetailsFooter │ │ │ └── ProductDetailsFooter.tsx │ │ ├── ProductDetailsHeader │ │ │ └── ProductDetailsHeader.tsx │ │ ├── ProductDetailsMeasurements │ │ │ └── ProductDetailsMeasurements.tsx │ │ ├── ProductDetailsSeller │ │ │ └── ProductDetailsSeller.tsx │ │ ├── ProductDetailsSellerReviews │ │ │ └── ProductDetailsSellerReviews.tsx │ │ ├── ProductDetailsShipping │ │ │ └── ProductDetailsShipping.tsx │ │ ├── ProductFilter │ │ │ └── ProductFilter.tsx │ │ ├── ProductPageDetails │ │ │ └── ProductPageDetails.tsx │ │ ├── RefreshButton │ │ │ └── RefreshButton.tsx │ │ ├── SellNowButton │ │ │ └── SellNowButton.tsx │ │ ├── SellerAvatar │ │ │ └── SellerAvatar.tsx │ │ ├── SellerRatingFilter │ │ │ └── SellerRatingFilter.tsx │ │ ├── SellerReviewTab │ │ │ └── SellerReviewTab.tsx │ │ ├── SizeFilter │ │ │ └── SizeFilter.tsx │ │ ├── StepProgressBar │ │ │ └── StepProgressBar.tsx │ │ ├── UserDropdown │ │ │ └── UserDropdown.tsx │ │ ├── WishlistButton │ │ │ └── WishlistButton.tsx │ │ ├── WishlistItem │ │ │ └── WishlistItem.tsx │ │ └── index.ts │ ├── molecules │ │ ├── Accordion │ │ │ └── Accordion.tsx │ │ ├── AddressForm │ │ │ ├── AddressForm.tsx │ │ │ └── schema.ts │ │ ├── CartDropdownItem │ │ │ └── CartDropdownItem.tsx │ │ ├── CategoryNavbar │ │ │ └── CategoryNavbar.tsx │ │ ├── CountrySelector │ │ │ └── CountrySelector.tsx │ │ ├── DeleteCartItemButton │ │ │ └── DeleteCartItemButton.tsx │ │ ├── Dropdown │ │ │ └── Dropdown.tsx │ │ ├── ErrorMessage │ │ │ └── ErrorMessage.tsx │ │ ├── FilterCheckboxOption │ │ │ └── FilterCheckboxOption.tsx │ │ ├── GalleryCarouselItem │ │ │ └── GalleryCarouselItem.tsx │ │ ├── HeaderCategoryNavbar │ │ │ └── HeaderCategoryNavbar.tsx │ │ ├── LocalizedLink │ │ │ └── LocalizedLink.tsx │ │ ├── LoginForm │ │ │ ├── LoginForm.tsx │ │ │ └── schema.ts │ │ ├── MessageButton │ │ │ └── MessageButton.tsx │ │ ├── Modal │ │ │ └── Modal.tsx │ │ ├── NativeSelect │ │ │ └── NativeSelect.tsx │ │ ├── NavbarSearch │ │ │ └── NavbarSearch.tsx │ │ ├── OrderParcelActions │ │ │ └── OrderParcelActions.tsx │ │ ├── OrderParcelItems │ │ │ └── OrderParcelItems.tsx │ │ ├── OrderParcelStatus │ │ │ └── OrderParcelStatus.tsx │ │ ├── ParcelAccordion │ │ │ ├── ParcelAccordion.tsx │ │ │ └── ParcelAccordionItems.tsx │ │ ├── PrimeCategoryNavbar │ │ │ └── PrimeCategoryNavbar.tsx │ │ ├── ProductCarouselIndicator │ │ │ └── ProductCarouselIndicator.tsx │ │ ├── ProductListingLoadingView │ │ │ └── ProductListingLoadingView.tsx │ │ ├── ProductListingNoResultsView │ │ │ └── ProductListingNoResultsView.tsx │ │ ├── ProductListingProductsView │ │ │ └── ProductListingProductsView.tsx │ │ ├── ProductPageAccordion │ │ │ └── ProductPageAccordion.tsx │ │ ├── ProductPostedDate │ │ │ └── ProductPostedDate.tsx │ │ ├── ProductReportButton │ │ │ └── ProductReportButton.tsx │ │ ├── ProductTags │ │ │ └── ProductTags.tsx │ │ ├── ProductVariants │ │ │ └── ProductVariants.tsx │ │ ├── ProdutMeasurementRow │ │ │ └── ProdutMeasurementRow.tsx │ │ ├── ProfileDetails │ │ │ ├── ProfileDetails.tsx │ │ │ └── ProfilePassword.tsx │ │ ├── ProfileDetailsForm │ │ │ ├── ProfileDetailsForm.tsx │ │ │ └── schema.ts │ │ ├── ProfilePasswordForm │ │ │ ├── ProfilePasswordForm.tsx │ │ │ └── schema.ts │ │ ├── RegisterForm │ │ │ ├── RegisterForm.tsx │ │ │ └── schema.ts │ │ ├── ReportListingForm │ │ │ └── ReportListingForm.tsx │ │ ├── ReportSellerForm │ │ │ └── ReportSellerForm.tsx │ │ ├── ReviewForm │ │ │ ├── ReviewForm.tsx │ │ │ └── schema.ts │ │ ├── SelectField │ │ │ └── SelectField.tsx │ │ ├── SellerInfo │ │ │ └── SellerInfo.tsx │ │ ├── SellerInfoHeader │ │ │ └── SellerInfoHeader.tsx │ │ ├── SellerReview │ │ │ └── SellerReview.tsx │ │ ├── SellerReviewList │ │ │ └── SellerReviewList.tsx │ │ ├── SellerScore │ │ │ └── SellerScore.tsx │ │ ├── TabsContent │ │ │ └── TabsContent.tsx │ │ ├── TabsList │ │ │ └── TabsList.tsx │ │ ├── UpdateCartItemButton │ │ │ └── UpdateCartItemButton.tsx │ │ ├── UserNavigation │ │ │ └── UserNavigation.tsx │ │ └── index.ts │ ├── organisms │ │ ├── Addressess │ │ │ └── Addresses.tsx │ │ ├── BillingAddress │ │ │ └── BillingAddress.tsx │ │ ├── BlogCard │ │ │ └── BlogCard.tsx │ │ ├── BrandCard │ │ │ └── BrandCard.tsx │ │ ├── CartEmpty │ │ │ └── CartEmpty.tsx │ │ ├── CartItems │ │ │ ├── CartItems.tsx │ │ │ └── EmptyCart.tsx │ │ ├── CartSummary │ │ │ └── CartSummary.tsx │ │ ├── CategoryCard │ │ │ └── CategoryCard.tsx │ │ ├── Chat │ │ │ └── Chat.tsx │ │ ├── Footer │ │ │ └── Footer.tsx │ │ ├── GalleryCarousel │ │ │ └── GalleryCarousel.tsx │ │ ├── Header │ │ │ └── Header.tsx │ │ ├── HomeProductsCarousel │ │ │ ├── AlgoliaProductsCarousel.tsx │ │ │ └── HomeProductsCarousel.tsx │ │ ├── OrderAddresses │ │ │ └── OrderAddresses.tsx │ │ ├── OrderDefails │ │ │ ├── OrderDetails.tsx │ │ │ ├── OrderShipping.tsx │ │ │ └── OrderTotals.tsx │ │ ├── OrderItems │ │ │ ├── Item.tsx │ │ │ └── OrderItems.tsx │ │ ├── OrderParcels │ │ │ └── OrderParcels.tsx │ │ ├── OrderTotals │ │ │ └── OrderTotals.tsx │ │ ├── OrdersPagination │ │ │ └── OrdersPagination.tsx │ │ ├── PaymentContainer │ │ │ ├── PaymentContainer.tsx │ │ │ ├── PaymentTest.tsx │ │ │ ├── PaymentWrapper.tsx │ │ │ ├── SkeletonCardDetails.tsx │ │ │ └── StripeWrapper.tsx │ │ ├── ProductCard │ │ │ ├── ProductCard.tsx │ │ │ └── SkeletonProductCard.tsx │ │ ├── ProductDetails │ │ │ └── ProductDetails.tsx │ │ ├── ProductGallery │ │ │ └── ProductGallery.tsx │ │ ├── ProductListingActiveFilters │ │ │ └── ProductListingActiveFilters.tsx │ │ ├── ProductListingHeader │ │ │ └── ProductListingHeader.tsx │ │ ├── ProductListingSkeleton │ │ │ └── ProductListingSkeleton.tsx │ │ ├── ProductSidebar │ │ │ ├── AlgoliaProductSidebar.tsx │ │ │ └── ProductSidebar.tsx │ │ ├── ProductsList │ │ │ └── ProductsList.tsx │ │ ├── ProductsPagination │ │ │ └── ProductsPagination.tsx │ │ ├── Reviews │ │ │ ├── OrderCard.tsx │ │ │ ├── ReviewCard.tsx │ │ │ ├── ReviewsToWrite.tsx │ │ │ ├── ReviewsWritten.tsx │ │ │ └── navigation.ts │ │ ├── SellerFooter │ │ │ └── SellerFooter.tsx │ │ ├── SellerHeading │ │ │ └── SellerHeading.tsx │ │ ├── SellerTabs │ │ │ └── SellerTabs.tsx │ │ ├── ShippingAddress │ │ │ └── ShippingAddress.tsx │ │ ├── SingleOrderReturn │ │ │ └── SingleOrderReturn.tsx │ │ ├── WishlistTabs │ │ │ └── WishlistTabs.tsx │ │ └── index.ts │ ├── providers │ │ ├── Cart │ │ │ ├── CartProvider.tsx │ │ │ └── context.tsx │ │ └── index.ts │ └── sections │ │ ├── BannerSection │ │ └── BannerSection.tsx │ │ ├── BlogSection │ │ └── BlogSection.tsx │ │ ├── Cart │ │ └── Cart.tsx │ │ ├── CartAddressSection │ │ └── CartAddressSection.tsx │ │ ├── CartPaymentSection │ │ └── CartPaymentSection.tsx │ │ ├── CartReview │ │ ├── CartItems.tsx │ │ ├── CartPromotionCode.tsx │ │ ├── CartReview.tsx │ │ └── PaymentButton.tsx │ │ ├── CartShippingMethodsSection │ │ ├── CartShippingMethodRow.tsx │ │ └── CartShippingMethodsSection.tsx │ │ ├── Hero │ │ ├── Hero.stories.tsx │ │ └── Hero.tsx │ │ ├── HomeCategories │ │ └── HomeCategories.tsx │ │ ├── HomePopularBrandsSection │ │ └── HomePopularBrandsSection.tsx │ │ ├── HomeProductSection │ │ └── HomeProductSection.tsx │ │ ├── OrderConfirmedSection │ │ └── OrderConfirmedSection.tsx │ │ ├── OrderDetailsSection │ │ └── OrderDetailsSection.tsx │ │ ├── OrderReturnRequests │ │ └── OrderReturnRequests.tsx │ │ ├── OrderReturnSection │ │ ├── OrderReturnSection.tsx │ │ ├── ReturnItemsTab.tsx │ │ ├── ReturnMethodsTab.tsx │ │ └── ReturnSummaryTab.tsx │ │ ├── ProductDetailsPage │ │ └── ProductDetailsPage.tsx │ │ ├── ProductListing │ │ ├── AlgoliaProductsListing.tsx │ │ └── ProductListing.tsx │ │ ├── SellerPageHeader │ │ └── SellerPageHeader.tsx │ │ ├── ShopByStyle │ │ └── ShopByStyleSection.tsx │ │ ├── UserMessagesSection │ │ └── UserMessagesSection.tsx │ │ ├── WishlistPage │ │ └── WishlistPage.tsx │ │ └── index.ts ├── const │ └── index.ts ├── data │ ├── cartMock.ts │ ├── categories.ts │ ├── footerLinks.ts │ ├── sellerMock.ts │ └── singleProductMock.ts ├── hooks │ ├── useFilters.tsx │ ├── useGetAllSearchParams.ts │ ├── usePagination.tsx │ ├── usePrevious.tsx │ ├── useScreenSize.tsx │ └── useUpdateSearchParams.ts ├── icons │ ├── index.tsx │ └── spinner.tsx ├── lib │ ├── client.tsx │ ├── config.ts │ ├── constants.tsx │ ├── data │ │ ├── cart.ts │ │ ├── categories.ts │ │ ├── collections.ts │ │ ├── cookies.ts │ │ ├── customer.ts │ │ ├── fulfillment.ts │ │ ├── orders.ts │ │ ├── payment.ts │ │ ├── products.ts │ │ ├── regions.ts │ │ ├── reviews.ts │ │ ├── seller.ts │ │ └── wishlist.ts │ ├── helpers │ │ ├── check-region.ts │ │ ├── compare-addresses.ts │ │ ├── filter-valid-cart-items.ts │ │ ├── get-faced-filters.ts │ │ ├── get-image-url.ts │ │ ├── get-precentage-diff.ts │ │ ├── get-product-price.ts │ │ ├── get-seller-product-price.ts │ │ ├── hreflang.ts │ │ ├── isBot.ts │ │ ├── isEmpty.ts │ │ ├── medusa-error.ts │ │ ├── money.ts │ │ ├── order-error-formatter.ts │ │ ├── parcel-statuses.ts │ │ ├── parse-variant-error.ts │ │ ├── seo.ts │ │ ├── sort-products.ts │ │ ├── sort-productsMock.ts │ │ └── toast.ts │ └── utils.ts ├── middleware.ts ├── types.d.ts └── types │ ├── blog.ts │ ├── brands.ts │ ├── cart.ts │ ├── categories.ts │ ├── product.ts │ ├── seller.ts │ ├── styles.ts │ └── wishlist.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ["next/core-web-vitals"], 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/next-intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.storybook/next-intl.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/README.md -------------------------------------------------------------------------------- /algolia-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/algolia-config.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/B2C_Storefront_Open_Graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/B2C_Storefront_Open_Graph.png -------------------------------------------------------------------------------- /public/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/Logo.png -------------------------------------------------------------------------------- /public/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/Logo.svg -------------------------------------------------------------------------------- /public/algolia-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/algolia-import.png -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/images/banner-section/Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/banner-section/Image.jpg -------------------------------------------------------------------------------- /public/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/blog/post-1.jpg -------------------------------------------------------------------------------- /public/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/blog/post-2.jpg -------------------------------------------------------------------------------- /public/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/blog/post-3.jpg -------------------------------------------------------------------------------- /public/images/brands/Balenciaga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/brands/Balenciaga.svg -------------------------------------------------------------------------------- /public/images/brands/Miu-Miu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/brands/Miu-Miu.svg -------------------------------------------------------------------------------- /public/images/brands/Nike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/brands/Nike.svg -------------------------------------------------------------------------------- /public/images/brands/Prada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/brands/Prada.svg -------------------------------------------------------------------------------- /public/images/categories/accessories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/accessories.png -------------------------------------------------------------------------------- /public/images/categories/boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/boots.png -------------------------------------------------------------------------------- /public/images/categories/sandals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/sandals.png -------------------------------------------------------------------------------- /public/images/categories/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/shirt.png -------------------------------------------------------------------------------- /public/images/categories/sneakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/sneakers.png -------------------------------------------------------------------------------- /public/images/categories/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/categories/sport.png -------------------------------------------------------------------------------- /public/images/hero/Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/hero/Image.jpg -------------------------------------------------------------------------------- /public/images/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/placeholder.svg -------------------------------------------------------------------------------- /public/images/product/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/product/placeholder.jpg -------------------------------------------------------------------------------- /public/images/product/review-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/product/review-image-1.jpg -------------------------------------------------------------------------------- /public/images/product/review-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/product/review-image-2.jpg -------------------------------------------------------------------------------- /public/images/product/review-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/product/review-image-3.jpg -------------------------------------------------------------------------------- /public/images/product/seller-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/product/seller-avatar.jpg -------------------------------------------------------------------------------- /public/images/shop-by-styles/Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/images/shop-by-styles/Image.jpg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/talkjs-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/talkjs-placeholder.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/[locale]/(checkout)/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(checkout)/checkout/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(checkout)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(checkout)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/cart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/cart/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/categories/[category]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/categories/[category]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/categories/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/collections/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/collections/[handle]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/order/[id]/confirmed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/order/[id]/confirmed/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/products/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/products/[handle]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/sellers/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/sellers/[handle]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/sellers/[handle]/reviews/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/sellers/[handle]/reviews/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/addresses/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/addresses/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/messages/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/messages/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/orders/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/orders/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/orders/[id]/request-success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/orders/[id]/request-success/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/orders/[id]/return/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/orders/[id]/return/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/orders/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/register/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/returns/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/returns/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/reviews/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/reviews/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/reviews/written/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/reviews/written/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/settings/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(main)/user/wishlist/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(main)/user/wishlist/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(reset-password)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(reset-password)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(reset-password)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/[locale]/(reset-password)/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/colors.css -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/global-error.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/components/atoms/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/atoms/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/components/atoms/Breadcrumbs/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Breadcrumbs/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/atoms/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/atoms/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/atoms/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/atoms/Chip/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Chip/Chip.tsx -------------------------------------------------------------------------------- /src/components/atoms/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Divider/Divider.tsx -------------------------------------------------------------------------------- /src/components/atoms/IconButton/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/IconButton/IconButton.tsx -------------------------------------------------------------------------------- /src/components/atoms/Indicator/Indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Indicator/Indicator.tsx -------------------------------------------------------------------------------- /src/components/atoms/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Input/Input.tsx -------------------------------------------------------------------------------- /src/components/atoms/InteractiveStarRating/InteractiveStarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/InteractiveStarRating/InteractiveStarRating.tsx -------------------------------------------------------------------------------- /src/components/atoms/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Label/Label.tsx -------------------------------------------------------------------------------- /src/components/atoms/Link/Link.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/atoms/LogoutButton/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/LogoutButton/LogoutButton.tsx -------------------------------------------------------------------------------- /src/components/atoms/NavigationItem/NavigationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/NavigationItem/NavigationItem.tsx -------------------------------------------------------------------------------- /src/components/atoms/PaginationButton/PaginationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/PaginationButton/PaginationButton.tsx -------------------------------------------------------------------------------- /src/components/atoms/Radio/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Radio/Radio.tsx -------------------------------------------------------------------------------- /src/components/atoms/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/components/atoms/StarRating/StarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/StarRating/StarRating.tsx -------------------------------------------------------------------------------- /src/components/atoms/TabsTrigger/TabsTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/TabsTrigger/TabsTrigger.tsx -------------------------------------------------------------------------------- /src/components/atoms/Textarea/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/Textarea/Textarea.tsx -------------------------------------------------------------------------------- /src/components/atoms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/atoms/index.ts -------------------------------------------------------------------------------- /src/components/cells/ActiveFilterElement/ActiveFilterElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ActiveFilterElement/ActiveFilterElement.tsx -------------------------------------------------------------------------------- /src/components/cells/AddressSelect/AddressSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/AddressSelect/AddressSelect.tsx -------------------------------------------------------------------------------- /src/components/cells/BrandFilter/BrandFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/BrandFilter/BrandFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /src/components/cells/CartDropdown/CartDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/CartDropdown/CartDropdown.tsx -------------------------------------------------------------------------------- /src/components/cells/CartItemsFooter/CartItemsFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/CartItemsFooter/CartItemsFooter.tsx -------------------------------------------------------------------------------- /src/components/cells/CartItemsHeader/CartItemsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/CartItemsHeader/CartItemsHeader.tsx -------------------------------------------------------------------------------- /src/components/cells/CartItemsProducts/CartItemsProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/CartItemsProducts/CartItemsProducts.tsx -------------------------------------------------------------------------------- /src/components/cells/ChatBox/ChatBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ChatBox/ChatBox.tsx -------------------------------------------------------------------------------- /src/components/cells/ColorFilter/ColorFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ColorFilter/ColorFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/ConditionFilter/ConditionFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ConditionFilter/ConditionFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/CountrySelect/CountrySelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/CountrySelect/CountrySelect.tsx -------------------------------------------------------------------------------- /src/components/cells/HeadingCategories/HeadingCategories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/HeadingCategories/HeadingCategories.tsx -------------------------------------------------------------------------------- /src/components/cells/LabeledInput/LabeledInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/LabeledInput/LabeledInput.tsx -------------------------------------------------------------------------------- /src/components/cells/MobileNavbar/MobileNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/MobileNavbar/MobileNavbar.tsx -------------------------------------------------------------------------------- /src/components/cells/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderAddresses/OrderAddresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderAddresses/OrderAddresses.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderCancel/OrderCancel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderCancel/OrderCancel.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderProductListItem/OrderProductListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderProductListItem/OrderProductListItem.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderReturn/OrderReturn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderReturn/OrderReturn.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderTimeline/OrderTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderTimeline/OrderTimeline.tsx -------------------------------------------------------------------------------- /src/components/cells/OrderTrack/OrderTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/OrderTrack/OrderTrack.tsx -------------------------------------------------------------------------------- /src/components/cells/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/cells/PasswordValidator/PasswordValidator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/PasswordValidator/PasswordValidator.tsx -------------------------------------------------------------------------------- /src/components/cells/PriceFilter/PriceFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/PriceFilter/PriceFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductAdditionalAttributes/ProductAdditionalAttributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductAdditionalAttributes/ProductAdditionalAttributes.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductCarousel/ProductCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductCarousel/ProductCarousel.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsFooter/ProductDetailsFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsFooter/ProductDetailsFooter.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsHeader/ProductDetailsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsHeader/ProductDetailsHeader.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsMeasurements/ProductDetailsMeasurements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsMeasurements/ProductDetailsMeasurements.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsSeller/ProductDetailsSeller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsSeller/ProductDetailsSeller.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsSellerReviews/ProductDetailsSellerReviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsSellerReviews/ProductDetailsSellerReviews.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductDetailsShipping/ProductDetailsShipping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductDetailsShipping/ProductDetailsShipping.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductFilter/ProductFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductFilter/ProductFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/ProductPageDetails/ProductPageDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/ProductPageDetails/ProductPageDetails.tsx -------------------------------------------------------------------------------- /src/components/cells/RefreshButton/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/RefreshButton/RefreshButton.tsx -------------------------------------------------------------------------------- /src/components/cells/SellNowButton/SellNowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/SellNowButton/SellNowButton.tsx -------------------------------------------------------------------------------- /src/components/cells/SellerAvatar/SellerAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/SellerAvatar/SellerAvatar.tsx -------------------------------------------------------------------------------- /src/components/cells/SellerRatingFilter/SellerRatingFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/SellerRatingFilter/SellerRatingFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/SellerReviewTab/SellerReviewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/SellerReviewTab/SellerReviewTab.tsx -------------------------------------------------------------------------------- /src/components/cells/SizeFilter/SizeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/SizeFilter/SizeFilter.tsx -------------------------------------------------------------------------------- /src/components/cells/StepProgressBar/StepProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/StepProgressBar/StepProgressBar.tsx -------------------------------------------------------------------------------- /src/components/cells/UserDropdown/UserDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/UserDropdown/UserDropdown.tsx -------------------------------------------------------------------------------- /src/components/cells/WishlistButton/WishlistButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/WishlistButton/WishlistButton.tsx -------------------------------------------------------------------------------- /src/components/cells/WishlistItem/WishlistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/WishlistItem/WishlistItem.tsx -------------------------------------------------------------------------------- /src/components/cells/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/cells/index.ts -------------------------------------------------------------------------------- /src/components/molecules/Accordion/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/Accordion/Accordion.tsx -------------------------------------------------------------------------------- /src/components/molecules/AddressForm/AddressForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/AddressForm/AddressForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/AddressForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/AddressForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/CartDropdownItem/CartDropdownItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/CartDropdownItem/CartDropdownItem.tsx -------------------------------------------------------------------------------- /src/components/molecules/CategoryNavbar/CategoryNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/CategoryNavbar/CategoryNavbar.tsx -------------------------------------------------------------------------------- /src/components/molecules/CountrySelector/CountrySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/CountrySelector/CountrySelector.tsx -------------------------------------------------------------------------------- /src/components/molecules/DeleteCartItemButton/DeleteCartItemButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/DeleteCartItemButton/DeleteCartItemButton.tsx -------------------------------------------------------------------------------- /src/components/molecules/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/molecules/ErrorMessage/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ErrorMessage/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/molecules/FilterCheckboxOption/FilterCheckboxOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/FilterCheckboxOption/FilterCheckboxOption.tsx -------------------------------------------------------------------------------- /src/components/molecules/GalleryCarouselItem/GalleryCarouselItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/GalleryCarouselItem/GalleryCarouselItem.tsx -------------------------------------------------------------------------------- /src/components/molecules/HeaderCategoryNavbar/HeaderCategoryNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/HeaderCategoryNavbar/HeaderCategoryNavbar.tsx -------------------------------------------------------------------------------- /src/components/molecules/LocalizedLink/LocalizedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/LocalizedLink/LocalizedLink.tsx -------------------------------------------------------------------------------- /src/components/molecules/LoginForm/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/LoginForm/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/LoginForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/LoginForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/MessageButton/MessageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/MessageButton/MessageButton.tsx -------------------------------------------------------------------------------- /src/components/molecules/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/molecules/NativeSelect/NativeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/NativeSelect/NativeSelect.tsx -------------------------------------------------------------------------------- /src/components/molecules/NavbarSearch/NavbarSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/NavbarSearch/NavbarSearch.tsx -------------------------------------------------------------------------------- /src/components/molecules/OrderParcelActions/OrderParcelActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/OrderParcelActions/OrderParcelActions.tsx -------------------------------------------------------------------------------- /src/components/molecules/OrderParcelItems/OrderParcelItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/OrderParcelItems/OrderParcelItems.tsx -------------------------------------------------------------------------------- /src/components/molecules/OrderParcelStatus/OrderParcelStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/OrderParcelStatus/OrderParcelStatus.tsx -------------------------------------------------------------------------------- /src/components/molecules/ParcelAccordion/ParcelAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ParcelAccordion/ParcelAccordion.tsx -------------------------------------------------------------------------------- /src/components/molecules/ParcelAccordion/ParcelAccordionItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ParcelAccordion/ParcelAccordionItems.tsx -------------------------------------------------------------------------------- /src/components/molecules/PrimeCategoryNavbar/PrimeCategoryNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/PrimeCategoryNavbar/PrimeCategoryNavbar.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductCarouselIndicator/ProductCarouselIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductCarouselIndicator/ProductCarouselIndicator.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductListingLoadingView/ProductListingLoadingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductListingLoadingView/ProductListingLoadingView.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductListingNoResultsView/ProductListingNoResultsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductListingNoResultsView/ProductListingNoResultsView.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductListingProductsView/ProductListingProductsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductListingProductsView/ProductListingProductsView.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductPageAccordion/ProductPageAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductPageAccordion/ProductPageAccordion.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductPostedDate/ProductPostedDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductPostedDate/ProductPostedDate.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductReportButton/ProductReportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductReportButton/ProductReportButton.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductTags/ProductTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductTags/ProductTags.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProductVariants/ProductVariants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProductVariants/ProductVariants.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProdutMeasurementRow/ProdutMeasurementRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProdutMeasurementRow/ProdutMeasurementRow.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProfileDetails/ProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfileDetails/ProfileDetails.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProfileDetails/ProfilePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfileDetails/ProfilePassword.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProfileDetailsForm/ProfileDetailsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfileDetailsForm/ProfileDetailsForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProfileDetailsForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfileDetailsForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/ProfilePasswordForm/ProfilePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfilePasswordForm/ProfilePasswordForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/ProfilePasswordForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ProfilePasswordForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/RegisterForm/RegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/RegisterForm/RegisterForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/RegisterForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/RegisterForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/ReportListingForm/ReportListingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ReportListingForm/ReportListingForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/ReportSellerForm/ReportSellerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ReportSellerForm/ReportSellerForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/ReviewForm/ReviewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ReviewForm/ReviewForm.tsx -------------------------------------------------------------------------------- /src/components/molecules/ReviewForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/ReviewForm/schema.ts -------------------------------------------------------------------------------- /src/components/molecules/SelectField/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SelectField/SelectField.tsx -------------------------------------------------------------------------------- /src/components/molecules/SellerInfo/SellerInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SellerInfo/SellerInfo.tsx -------------------------------------------------------------------------------- /src/components/molecules/SellerInfoHeader/SellerInfoHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SellerInfoHeader/SellerInfoHeader.tsx -------------------------------------------------------------------------------- /src/components/molecules/SellerReview/SellerReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SellerReview/SellerReview.tsx -------------------------------------------------------------------------------- /src/components/molecules/SellerReviewList/SellerReviewList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SellerReviewList/SellerReviewList.tsx -------------------------------------------------------------------------------- /src/components/molecules/SellerScore/SellerScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/SellerScore/SellerScore.tsx -------------------------------------------------------------------------------- /src/components/molecules/TabsContent/TabsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/TabsContent/TabsContent.tsx -------------------------------------------------------------------------------- /src/components/molecules/TabsList/TabsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/TabsList/TabsList.tsx -------------------------------------------------------------------------------- /src/components/molecules/UpdateCartItemButton/UpdateCartItemButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/UpdateCartItemButton/UpdateCartItemButton.tsx -------------------------------------------------------------------------------- /src/components/molecules/UserNavigation/UserNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/UserNavigation/UserNavigation.tsx -------------------------------------------------------------------------------- /src/components/molecules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/molecules/index.ts -------------------------------------------------------------------------------- /src/components/organisms/Addressess/Addresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Addressess/Addresses.tsx -------------------------------------------------------------------------------- /src/components/organisms/BillingAddress/BillingAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/BillingAddress/BillingAddress.tsx -------------------------------------------------------------------------------- /src/components/organisms/BlogCard/BlogCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/BlogCard/BlogCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/BrandCard/BrandCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/BrandCard/BrandCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/CartEmpty/CartEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/CartEmpty/CartEmpty.tsx -------------------------------------------------------------------------------- /src/components/organisms/CartItems/CartItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/CartItems/CartItems.tsx -------------------------------------------------------------------------------- /src/components/organisms/CartItems/EmptyCart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/CartItems/EmptyCart.tsx -------------------------------------------------------------------------------- /src/components/organisms/CartSummary/CartSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/CartSummary/CartSummary.tsx -------------------------------------------------------------------------------- /src/components/organisms/CategoryCard/CategoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/CategoryCard/CategoryCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Chat/Chat.tsx -------------------------------------------------------------------------------- /src/components/organisms/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/organisms/GalleryCarousel/GalleryCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/GalleryCarousel/GalleryCarousel.tsx -------------------------------------------------------------------------------- /src/components/organisms/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/organisms/HomeProductsCarousel/AlgoliaProductsCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/HomeProductsCarousel/AlgoliaProductsCarousel.tsx -------------------------------------------------------------------------------- /src/components/organisms/HomeProductsCarousel/HomeProductsCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/HomeProductsCarousel/HomeProductsCarousel.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderAddresses/OrderAddresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderAddresses/OrderAddresses.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderDefails/OrderDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderDefails/OrderDetails.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderDefails/OrderShipping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderDefails/OrderShipping.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderDefails/OrderTotals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderDefails/OrderTotals.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderItems/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderItems/Item.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderItems/OrderItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderItems/OrderItems.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderParcels/OrderParcels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderParcels/OrderParcels.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrderTotals/OrderTotals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrderTotals/OrderTotals.tsx -------------------------------------------------------------------------------- /src/components/organisms/OrdersPagination/OrdersPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/OrdersPagination/OrdersPagination.tsx -------------------------------------------------------------------------------- /src/components/organisms/PaymentContainer/PaymentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/PaymentContainer/PaymentContainer.tsx -------------------------------------------------------------------------------- /src/components/organisms/PaymentContainer/PaymentTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/PaymentContainer/PaymentTest.tsx -------------------------------------------------------------------------------- /src/components/organisms/PaymentContainer/PaymentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/PaymentContainer/PaymentWrapper.tsx -------------------------------------------------------------------------------- /src/components/organisms/PaymentContainer/SkeletonCardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/PaymentContainer/SkeletonCardDetails.tsx -------------------------------------------------------------------------------- /src/components/organisms/PaymentContainer/StripeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/PaymentContainer/StripeWrapper.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductCard/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductCard/ProductCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductCard/SkeletonProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductCard/SkeletonProductCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductDetails/ProductDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductDetails/ProductDetails.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductGallery/ProductGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductGallery/ProductGallery.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductListingActiveFilters/ProductListingActiveFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductListingActiveFilters/ProductListingActiveFilters.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductListingHeader/ProductListingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductListingHeader/ProductListingHeader.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductListingSkeleton/ProductListingSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductListingSkeleton/ProductListingSkeleton.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductSidebar/AlgoliaProductSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductSidebar/AlgoliaProductSidebar.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductSidebar/ProductSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductSidebar/ProductSidebar.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductsList/ProductsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductsList/ProductsList.tsx -------------------------------------------------------------------------------- /src/components/organisms/ProductsPagination/ProductsPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ProductsPagination/ProductsPagination.tsx -------------------------------------------------------------------------------- /src/components/organisms/Reviews/OrderCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Reviews/OrderCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/Reviews/ReviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Reviews/ReviewCard.tsx -------------------------------------------------------------------------------- /src/components/organisms/Reviews/ReviewsToWrite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Reviews/ReviewsToWrite.tsx -------------------------------------------------------------------------------- /src/components/organisms/Reviews/ReviewsWritten.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Reviews/ReviewsWritten.tsx -------------------------------------------------------------------------------- /src/components/organisms/Reviews/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/Reviews/navigation.ts -------------------------------------------------------------------------------- /src/components/organisms/SellerFooter/SellerFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/SellerFooter/SellerFooter.tsx -------------------------------------------------------------------------------- /src/components/organisms/SellerHeading/SellerHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/SellerHeading/SellerHeading.tsx -------------------------------------------------------------------------------- /src/components/organisms/SellerTabs/SellerTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/SellerTabs/SellerTabs.tsx -------------------------------------------------------------------------------- /src/components/organisms/ShippingAddress/ShippingAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/ShippingAddress/ShippingAddress.tsx -------------------------------------------------------------------------------- /src/components/organisms/SingleOrderReturn/SingleOrderReturn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/SingleOrderReturn/SingleOrderReturn.tsx -------------------------------------------------------------------------------- /src/components/organisms/WishlistTabs/WishlistTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/WishlistTabs/WishlistTabs.tsx -------------------------------------------------------------------------------- /src/components/organisms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/organisms/index.ts -------------------------------------------------------------------------------- /src/components/providers/Cart/CartProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/providers/Cart/CartProvider.tsx -------------------------------------------------------------------------------- /src/components/providers/Cart/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/providers/Cart/context.tsx -------------------------------------------------------------------------------- /src/components/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/providers/index.ts -------------------------------------------------------------------------------- /src/components/sections/BannerSection/BannerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/BannerSection/BannerSection.tsx -------------------------------------------------------------------------------- /src/components/sections/BlogSection/BlogSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/BlogSection/BlogSection.tsx -------------------------------------------------------------------------------- /src/components/sections/Cart/Cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/Cart/Cart.tsx -------------------------------------------------------------------------------- /src/components/sections/CartAddressSection/CartAddressSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartAddressSection/CartAddressSection.tsx -------------------------------------------------------------------------------- /src/components/sections/CartPaymentSection/CartPaymentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartPaymentSection/CartPaymentSection.tsx -------------------------------------------------------------------------------- /src/components/sections/CartReview/CartItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartReview/CartItems.tsx -------------------------------------------------------------------------------- /src/components/sections/CartReview/CartPromotionCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartReview/CartPromotionCode.tsx -------------------------------------------------------------------------------- /src/components/sections/CartReview/CartReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartReview/CartReview.tsx -------------------------------------------------------------------------------- /src/components/sections/CartReview/PaymentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartReview/PaymentButton.tsx -------------------------------------------------------------------------------- /src/components/sections/CartShippingMethodsSection/CartShippingMethodRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartShippingMethodsSection/CartShippingMethodRow.tsx -------------------------------------------------------------------------------- /src/components/sections/CartShippingMethodsSection/CartShippingMethodsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/CartShippingMethodsSection/CartShippingMethodsSection.tsx -------------------------------------------------------------------------------- /src/components/sections/Hero/Hero.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/Hero/Hero.stories.tsx -------------------------------------------------------------------------------- /src/components/sections/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/Hero/Hero.tsx -------------------------------------------------------------------------------- /src/components/sections/HomeCategories/HomeCategories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/HomeCategories/HomeCategories.tsx -------------------------------------------------------------------------------- /src/components/sections/HomePopularBrandsSection/HomePopularBrandsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/HomePopularBrandsSection/HomePopularBrandsSection.tsx -------------------------------------------------------------------------------- /src/components/sections/HomeProductSection/HomeProductSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/HomeProductSection/HomeProductSection.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderConfirmedSection/OrderConfirmedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderConfirmedSection/OrderConfirmedSection.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderDetailsSection/OrderDetailsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderDetailsSection/OrderDetailsSection.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderReturnRequests/OrderReturnRequests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderReturnRequests/OrderReturnRequests.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderReturnSection/OrderReturnSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderReturnSection/OrderReturnSection.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderReturnSection/ReturnItemsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderReturnSection/ReturnItemsTab.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderReturnSection/ReturnMethodsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderReturnSection/ReturnMethodsTab.tsx -------------------------------------------------------------------------------- /src/components/sections/OrderReturnSection/ReturnSummaryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/OrderReturnSection/ReturnSummaryTab.tsx -------------------------------------------------------------------------------- /src/components/sections/ProductDetailsPage/ProductDetailsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/ProductDetailsPage/ProductDetailsPage.tsx -------------------------------------------------------------------------------- /src/components/sections/ProductListing/AlgoliaProductsListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/ProductListing/AlgoliaProductsListing.tsx -------------------------------------------------------------------------------- /src/components/sections/ProductListing/ProductListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/ProductListing/ProductListing.tsx -------------------------------------------------------------------------------- /src/components/sections/SellerPageHeader/SellerPageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/SellerPageHeader/SellerPageHeader.tsx -------------------------------------------------------------------------------- /src/components/sections/ShopByStyle/ShopByStyleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/ShopByStyle/ShopByStyleSection.tsx -------------------------------------------------------------------------------- /src/components/sections/UserMessagesSection/UserMessagesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/UserMessagesSection/UserMessagesSection.tsx -------------------------------------------------------------------------------- /src/components/sections/WishlistPage/WishlistPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/WishlistPage/WishlistPage.tsx -------------------------------------------------------------------------------- /src/components/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/components/sections/index.ts -------------------------------------------------------------------------------- /src/const/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/const/index.ts -------------------------------------------------------------------------------- /src/data/cartMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/data/cartMock.ts -------------------------------------------------------------------------------- /src/data/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/data/categories.ts -------------------------------------------------------------------------------- /src/data/footerLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/data/footerLinks.ts -------------------------------------------------------------------------------- /src/data/sellerMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/data/sellerMock.ts -------------------------------------------------------------------------------- /src/data/singleProductMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/data/singleProductMock.ts -------------------------------------------------------------------------------- /src/hooks/useFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/useFilters.tsx -------------------------------------------------------------------------------- /src/hooks/useGetAllSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/useGetAllSearchParams.ts -------------------------------------------------------------------------------- /src/hooks/usePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/usePagination.tsx -------------------------------------------------------------------------------- /src/hooks/usePrevious.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/usePrevious.tsx -------------------------------------------------------------------------------- /src/hooks/useScreenSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/useScreenSize.tsx -------------------------------------------------------------------------------- /src/hooks/useUpdateSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/hooks/useUpdateSearchParams.ts -------------------------------------------------------------------------------- /src/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/icons/index.tsx -------------------------------------------------------------------------------- /src/icons/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/icons/spinner.tsx -------------------------------------------------------------------------------- /src/lib/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/client.tsx -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/constants.tsx -------------------------------------------------------------------------------- /src/lib/data/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/cart.ts -------------------------------------------------------------------------------- /src/lib/data/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/categories.ts -------------------------------------------------------------------------------- /src/lib/data/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/collections.ts -------------------------------------------------------------------------------- /src/lib/data/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/cookies.ts -------------------------------------------------------------------------------- /src/lib/data/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/customer.ts -------------------------------------------------------------------------------- /src/lib/data/fulfillment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/fulfillment.ts -------------------------------------------------------------------------------- /src/lib/data/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/orders.ts -------------------------------------------------------------------------------- /src/lib/data/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/payment.ts -------------------------------------------------------------------------------- /src/lib/data/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/products.ts -------------------------------------------------------------------------------- /src/lib/data/regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/regions.ts -------------------------------------------------------------------------------- /src/lib/data/reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/reviews.ts -------------------------------------------------------------------------------- /src/lib/data/seller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/seller.ts -------------------------------------------------------------------------------- /src/lib/data/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/data/wishlist.ts -------------------------------------------------------------------------------- /src/lib/helpers/check-region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/check-region.ts -------------------------------------------------------------------------------- /src/lib/helpers/compare-addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/compare-addresses.ts -------------------------------------------------------------------------------- /src/lib/helpers/filter-valid-cart-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/filter-valid-cart-items.ts -------------------------------------------------------------------------------- /src/lib/helpers/get-faced-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/get-faced-filters.ts -------------------------------------------------------------------------------- /src/lib/helpers/get-image-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/get-image-url.ts -------------------------------------------------------------------------------- /src/lib/helpers/get-precentage-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/get-precentage-diff.ts -------------------------------------------------------------------------------- /src/lib/helpers/get-product-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/get-product-price.ts -------------------------------------------------------------------------------- /src/lib/helpers/get-seller-product-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/get-seller-product-price.ts -------------------------------------------------------------------------------- /src/lib/helpers/hreflang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/hreflang.ts -------------------------------------------------------------------------------- /src/lib/helpers/isBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/isBot.ts -------------------------------------------------------------------------------- /src/lib/helpers/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/isEmpty.ts -------------------------------------------------------------------------------- /src/lib/helpers/medusa-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/medusa-error.ts -------------------------------------------------------------------------------- /src/lib/helpers/money.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/money.ts -------------------------------------------------------------------------------- /src/lib/helpers/order-error-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/order-error-formatter.ts -------------------------------------------------------------------------------- /src/lib/helpers/parcel-statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/parcel-statuses.ts -------------------------------------------------------------------------------- /src/lib/helpers/parse-variant-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/parse-variant-error.ts -------------------------------------------------------------------------------- /src/lib/helpers/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/seo.ts -------------------------------------------------------------------------------- /src/lib/helpers/sort-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/sort-products.ts -------------------------------------------------------------------------------- /src/lib/helpers/sort-productsMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/sort-productsMock.ts -------------------------------------------------------------------------------- /src/lib/helpers/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/helpers/toast.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.lodash'; 2 | -------------------------------------------------------------------------------- /src/types/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/blog.ts -------------------------------------------------------------------------------- /src/types/brands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/brands.ts -------------------------------------------------------------------------------- /src/types/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/cart.ts -------------------------------------------------------------------------------- /src/types/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/categories.ts -------------------------------------------------------------------------------- /src/types/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/product.ts -------------------------------------------------------------------------------- /src/types/seller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/seller.ts -------------------------------------------------------------------------------- /src/types/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/styles.ts -------------------------------------------------------------------------------- /src/types/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/src/types/wishlist.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurjs/b2c-marketplace-storefront/HEAD/yarn.lock --------------------------------------------------------------------------------