@pradip1995/create-storefront 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/create-storefront.js +239 -0
- package/lib/kit-next-config.js +84 -0
- package/package.json +32 -0
- package/templates/storefront/.eslintrc.json +3 -0
- package/templates/storefront/README.md +35 -0
- package/templates/storefront/check-env-variables.js +51 -0
- package/templates/storefront/kit-next-config.js +71 -0
- package/templates/storefront/next-env.d.ts +5 -0
- package/templates/storefront/next.config.js +25 -0
- package/templates/storefront/package.json +56 -0
- package/templates/storefront/postcss.config.js +6 -0
- package/templates/storefront/public/favicon.png +0 -0
- package/templates/storefront/src/app/[countryCode]/(checkout)/checkout/page.tsx +23 -0
- package/templates/storefront/src/app/[countryCode]/(checkout)/checkout/payment/page.tsx +47 -0
- package/templates/storefront/src/app/[countryCode]/(checkout)/layout.tsx +31 -0
- package/templates/storefront/src/app/[countryCode]/(checkout)/not-found.tsx +19 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/addresses/page.tsx +31 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/loading.tsx +9 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/orders/details/[id]/page.tsx +35 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/orders/exchange/[id]/page.tsx +47 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/orders/page.tsx +28 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/orders/return/[id]/page.tsx +66 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/page.tsx +22 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/payment-methods/page.tsx +23 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@dashboard/profile/page.tsx +43 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@login/default.tsx +11 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/@login/page.tsx +18 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/guest-orders/page.tsx +13 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/layout.tsx +22 -0
- package/templates/storefront/src/app/[countryCode]/(main)/account/loading.tsx +9 -0
- package/templates/storefront/src/app/[countryCode]/(main)/cart/loading.tsx +5 -0
- package/templates/storefront/src/app/[countryCode]/(main)/cart/not-found.tsx +21 -0
- package/templates/storefront/src/app/[countryCode]/(main)/cart/page.tsx +23 -0
- package/templates/storefront/src/app/[countryCode]/(main)/categories/[...category]/page.tsx +11 -0
- package/templates/storefront/src/app/[countryCode]/(main)/collections/[handle]/page.tsx +11 -0
- package/templates/storefront/src/app/[countryCode]/(main)/contact/page.tsx +21 -0
- package/templates/storefront/src/app/[countryCode]/(main)/guest-orders/page.tsx +12 -0
- package/templates/storefront/src/app/[countryCode]/(main)/help/page.tsx +28 -0
- package/templates/storefront/src/app/[countryCode]/(main)/layout.tsx +21 -0
- package/templates/storefront/src/app/[countryCode]/(main)/not-found.tsx +20 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/[id]/confirmed/loading.tsx +5 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/[id]/confirmed/page.tsx +23 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/[id]/transfer/[token]/accept/page.tsx +41 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/[id]/transfer/[token]/decline/page.tsx +41 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/[id]/transfer/[token]/page.tsx +38 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/exchange/[id]/page.tsx +47 -0
- package/templates/storefront/src/app/[countryCode]/(main)/order/return/[id]/page.tsx +61 -0
- package/templates/storefront/src/app/[countryCode]/(main)/orders/[id]/page.tsx +33 -0
- package/templates/storefront/src/app/[countryCode]/(main)/page.tsx +24 -0
- package/templates/storefront/src/app/[countryCode]/(main)/privacy-policy/page.tsx +173 -0
- package/templates/storefront/src/app/[countryCode]/(main)/products/[handle]/page.tsx +193 -0
- package/templates/storefront/src/app/[countryCode]/(main)/reset-password/page.tsx +192 -0
- package/templates/storefront/src/app/[countryCode]/(main)/store/page.tsx +72 -0
- package/templates/storefront/src/app/[countryCode]/(main)/terms-of-use/page.tsx +179 -0
- package/templates/storefront/src/app/[countryCode]/(main)/wishlist/page.tsx +19 -0
- package/templates/storefront/src/app/api/meta/event/route.ts +63 -0
- package/templates/storefront/src/app/auth/customer/google/callback/page.tsx +126 -0
- package/templates/storefront/src/app/layout.tsx +104 -0
- package/templates/storefront/src/app/not-found.tsx +30 -0
- package/templates/storefront/src/app/opengraph-image.jpg +0 -0
- package/templates/storefront/src/app/robots.ts +15 -0
- package/templates/storefront/src/app/sitemap.ts +65 -0
- package/templates/storefront/src/app/twitter-image.jpg +0 -0
- package/templates/storefront/src/modules/account/components/account-deletion/index.tsx +160 -0
- package/templates/storefront/src/modules/account/components/account-info/index.tsx +145 -0
- package/templates/storefront/src/modules/account/components/account-nav/icons.tsx +43 -0
- package/templates/storefront/src/modules/account/components/account-nav/index.tsx +318 -0
- package/templates/storefront/src/modules/account/components/account-nav/logout-modal.tsx +92 -0
- package/templates/storefront/src/modules/account/components/account-nav/payment-methods-icon.tsx +9 -0
- package/templates/storefront/src/modules/account/components/address-book/index.tsx +47 -0
- package/templates/storefront/src/modules/account/components/address-card/add-address.tsx +377 -0
- package/templates/storefront/src/modules/account/components/address-card/edit-address-modal.tsx +468 -0
- package/templates/storefront/src/modules/account/components/deletion-pending-modal/index.tsx +213 -0
- package/templates/storefront/src/modules/account/components/forgot-password/index.tsx +1 -0
- package/templates/storefront/src/modules/account/components/login/index.tsx +1 -0
- package/templates/storefront/src/modules/account/components/order-card/index.tsx +221 -0
- package/templates/storefront/src/modules/account/components/order-overview/index.tsx +159 -0
- package/templates/storefront/src/modules/account/components/overview/index.tsx +189 -0
- package/templates/storefront/src/modules/account/components/profile-billing-address/index.tsx +447 -0
- package/templates/storefront/src/modules/account/components/profile-email/index.tsx +75 -0
- package/templates/storefront/src/modules/account/components/profile-form/index.tsx +416 -0
- package/templates/storefront/src/modules/account/components/profile-name/index.tsx +76 -0
- package/templates/storefront/src/modules/account/components/profile-password/index.tsx +70 -0
- package/templates/storefront/src/modules/account/components/profile-phone/index.tsx +185 -0
- package/templates/storefront/src/modules/account/components/register/index.tsx +1 -0
- package/templates/storefront/src/modules/account/components/return-item-selector/index.tsx +187 -0
- package/templates/storefront/src/modules/account/components/return-shipping-selector/index.tsx +118 -0
- package/templates/storefront/src/modules/account/components/transfer-request-form/index.tsx +81 -0
- package/templates/storefront/src/modules/account/templates/account-layout.tsx +38 -0
- package/templates/storefront/src/modules/account/templates/exchange-request-template.tsx +389 -0
- package/templates/storefront/src/modules/account/templates/guest-orders-template.tsx +123 -0
- package/templates/storefront/src/modules/account/templates/login-template.tsx +44 -0
- package/templates/storefront/src/modules/account/templates/payment-methods-template.tsx +478 -0
- package/templates/storefront/src/modules/account/templates/return-request-template.tsx +300 -0
- package/templates/storefront/src/modules/cart/components/abandoned-carts/ScrollToPendingOrdersButton.tsx +21 -0
- package/templates/storefront/src/modules/cart/components/abandoned-carts/index.tsx +335 -0
- package/templates/storefront/src/modules/cart/components/applied-promotions/index.tsx +121 -0
- package/templates/storefront/src/modules/cart/components/cart-delivery-selection/index.tsx +203 -0
- package/templates/storefront/src/modules/cart/components/cart-item-card/index.tsx +476 -0
- package/templates/storefront/src/modules/cart/components/cart-item-select/index.tsx +73 -0
- package/templates/storefront/src/modules/cart/components/cart-view-tracker/index.tsx +44 -0
- package/templates/storefront/src/modules/cart/components/delivery-information/index.tsx +89 -0
- package/templates/storefront/src/modules/cart/components/empty-cart-message/index.tsx +38 -0
- package/templates/storefront/src/modules/cart/components/item/index.tsx +150 -0
- package/templates/storefront/src/modules/cart/components/pincode-checker/index.tsx +174 -0
- package/templates/storefront/src/modules/cart/components/sign-in-prompt/index.tsx +26 -0
- package/templates/storefront/src/modules/cart/components/you-may-also-like/index.tsx +137 -0
- package/templates/storefront/src/modules/cart/templates/index.tsx +88 -0
- package/templates/storefront/src/modules/cart/templates/items.tsx +49 -0
- package/templates/storefront/src/modules/cart/templates/preview.tsx +51 -0
- package/templates/storefront/src/modules/cart/templates/summary.tsx +29 -0
- package/templates/storefront/src/modules/checkout/components/add-address-modal/index.tsx +390 -0
- package/templates/storefront/src/modules/checkout/components/address-card/index.tsx +135 -0
- package/templates/storefront/src/modules/checkout/components/address-select/index.tsx +116 -0
- package/templates/storefront/src/modules/checkout/components/addresses/index.tsx +605 -0
- package/templates/storefront/src/modules/checkout/components/back-link/index.tsx +32 -0
- package/templates/storefront/src/modules/checkout/components/billing_address/index.tsx +301 -0
- package/templates/storefront/src/modules/checkout/components/checkout-begin-tracker/index.tsx +45 -0
- package/templates/storefront/src/modules/checkout/components/checkout-leave-guard/index.tsx +109 -0
- package/templates/storefront/src/modules/checkout/components/checkout-shipping-tracker/index.tsx +45 -0
- package/templates/storefront/src/modules/checkout/components/country-select/index.tsx +50 -0
- package/templates/storefront/src/modules/checkout/components/discount-code/index.tsx +220 -0
- package/templates/storefront/src/modules/checkout/components/error-message/index.tsx +13 -0
- package/templates/storefront/src/modules/checkout/components/payment/index.tsx +572 -0
- package/templates/storefront/src/modules/checkout/components/payment-button/index.tsx +257 -0
- package/templates/storefront/src/modules/checkout/components/payment-button/razorpay-payment-button.tsx +136 -0
- package/templates/storefront/src/modules/checkout/components/payment-container/index.tsx +129 -0
- package/templates/storefront/src/modules/checkout/components/payment-test/index.tsx +12 -0
- package/templates/storefront/src/modules/checkout/components/payment-wrapper/index.tsx +50 -0
- package/templates/storefront/src/modules/checkout/components/payment-wrapper/stripe-wrapper.tsx +54 -0
- package/templates/storefront/src/modules/checkout/components/processing-overlay/index.tsx +83 -0
- package/templates/storefront/src/modules/checkout/components/review/index.tsx +60 -0
- package/templates/storefront/src/modules/checkout/components/select-address-modal/index.tsx +103 -0
- package/templates/storefront/src/modules/checkout/components/shipping/index.tsx +533 -0
- package/templates/storefront/src/modules/checkout/components/shipping-address/index.tsx +521 -0
- package/templates/storefront/src/modules/checkout/components/submit-button/index.tsx +32 -0
- package/templates/storefront/src/modules/checkout/templates/checkout-form/index.tsx +38 -0
- package/templates/storefront/src/modules/checkout/templates/checkout-summary/index.tsx +274 -0
- package/templates/storefront/src/modules/common/components/breadcrumb/index.tsx +43 -0
- package/templates/storefront/src/modules/common/components/cart-totals/index.tsx +473 -0
- package/templates/storefront/src/modules/common/components/checkbox/index.tsx +98 -0
- package/templates/storefront/src/modules/common/components/delete-button/index.tsx +156 -0
- package/templates/storefront/src/modules/common/components/divider/index.tsx +9 -0
- package/templates/storefront/src/modules/common/components/filter-checkbox-group/index.tsx +134 -0
- package/templates/storefront/src/modules/common/components/filter-radio-group/index.tsx +62 -0
- package/templates/storefront/src/modules/common/components/input/index.tsx +79 -0
- package/templates/storefront/src/modules/common/components/interactive-link/index.tsx +33 -0
- package/templates/storefront/src/modules/common/components/line-item-options/index.tsx +26 -0
- package/templates/storefront/src/modules/common/components/line-item-price/index.tsx +64 -0
- package/templates/storefront/src/modules/common/components/line-item-unit-price/index.tsx +61 -0
- package/templates/storefront/src/modules/common/components/localized-client-link/index.tsx +32 -0
- package/templates/storefront/src/modules/common/components/login-popup/index.tsx +78 -0
- package/templates/storefront/src/modules/common/components/modal/index.tsx +123 -0
- package/templates/storefront/src/modules/common/components/native-select/index.tsx +75 -0
- package/templates/storefront/src/modules/common/components/obfuscated-email/index.tsx +30 -0
- package/templates/storefront/src/modules/common/components/product/product-rating/index.tsx +172 -0
- package/templates/storefront/src/modules/common/components/product/review-modal/index.tsx +333 -0
- package/templates/storefront/src/modules/common/components/product/share-button/index.tsx +227 -0
- package/templates/storefront/src/modules/common/components/product/wishlist-icon/index.tsx +46 -0
- package/templates/storefront/src/modules/common/components/radio/index.tsx +27 -0
- package/templates/storefront/src/modules/common/components/select/index.tsx +164 -0
- package/templates/storefront/src/modules/common/components/side-panel/index.tsx +65 -0
- package/templates/storefront/src/modules/common/icons/arrow-left.tsx +36 -0
- package/templates/storefront/src/modules/common/icons/back.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/bancontact.tsx +26 -0
- package/templates/storefront/src/modules/common/icons/chevron-down.tsx +30 -0
- package/templates/storefront/src/modules/common/icons/delivered.tsx +29 -0
- package/templates/storefront/src/modules/common/icons/envelope.tsx +27 -0
- package/templates/storefront/src/modules/common/icons/eye-off.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/eye.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/fast-delivery.tsx +65 -0
- package/templates/storefront/src/modules/common/icons/ideal.tsx +26 -0
- package/templates/storefront/src/modules/common/icons/lock.tsx +31 -0
- package/templates/storefront/src/modules/common/icons/map-pin.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/medusa.tsx +27 -0
- package/templates/storefront/src/modules/common/icons/menu.tsx +45 -0
- package/templates/storefront/src/modules/common/icons/nextjs.tsx +27 -0
- package/templates/storefront/src/modules/common/icons/package.tsx +44 -0
- package/templates/storefront/src/modules/common/icons/paypal.tsx +30 -0
- package/templates/storefront/src/modules/common/icons/phone.tsx +30 -0
- package/templates/storefront/src/modules/common/icons/placeholder-image.tsx +44 -0
- package/templates/storefront/src/modules/common/icons/refresh.tsx +51 -0
- package/templates/storefront/src/modules/common/icons/spinner.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/trash.tsx +51 -0
- package/templates/storefront/src/modules/common/icons/user.tsx +37 -0
- package/templates/storefront/src/modules/common/icons/x.tsx +37 -0
- package/templates/storefront/src/modules/contact/templates/index.tsx +272 -0
- package/templates/storefront/src/modules/help/templates/index.tsx +629 -0
- package/templates/storefront/src/modules/home/components/dynamic-banner/index.tsx +190 -0
- package/templates/storefront/src/modules/home/components/featured-products/index.tsx +16 -0
- package/templates/storefront/src/modules/home/components/featured-products/product-rail/index.tsx +51 -0
- package/templates/storefront/src/modules/home/components/features/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/hero/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/loved-by-moms/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/new-arrivals/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/shop-by-age/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/shop-by-category/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/testimonials/index.tsx +1 -0
- package/templates/storefront/src/modules/home/components/why-choose-us/dynamic-features.tsx +93 -0
- package/templates/storefront/src/modules/home/components/why-choose-us/index.tsx +1 -0
- package/templates/storefront/src/modules/layout/components/account-dropdown/index.tsx +56 -0
- package/templates/storefront/src/modules/layout/components/cart-button/index.tsx +8 -0
- package/templates/storefront/src/modules/layout/components/cart-dropdown/index.tsx +424 -0
- package/templates/storefront/src/modules/layout/components/cart-mismatch-banner/index.tsx +57 -0
- package/templates/storefront/src/modules/layout/components/cookie-consent/index.tsx +116 -0
- package/templates/storefront/src/modules/layout/components/country-select/index.tsx +135 -0
- package/templates/storefront/src/modules/layout/components/desktop-search/index.tsx +148 -0
- package/templates/storefront/src/modules/layout/components/dynamic-logo/index.tsx +27 -0
- package/templates/storefront/src/modules/layout/components/footer-categories/index.tsx +34 -0
- package/templates/storefront/src/modules/layout/components/footer-contact/index.tsx +87 -0
- package/templates/storefront/src/modules/layout/components/footer-description/index.tsx +12 -0
- package/templates/storefront/src/modules/layout/components/footer-logo/index.tsx +22 -0
- package/templates/storefront/src/modules/layout/components/footer-newsletter/index.tsx +100 -0
- package/templates/storefront/src/modules/layout/components/language-select/index.tsx +192 -0
- package/templates/storefront/src/modules/layout/components/medusa-cta/index.tsx +21 -0
- package/templates/storefront/src/modules/layout/components/mobile-menu/index.tsx +296 -0
- package/templates/storefront/src/modules/layout/components/nav-links/index.tsx +66 -0
- package/templates/storefront/src/modules/layout/components/nav-wrapper/index.tsx +14 -0
- package/templates/storefront/src/modules/layout/components/promo-bar/index.tsx +7 -0
- package/templates/storefront/src/modules/layout/components/promo-bar/promo-bar-content.tsx +174 -0
- package/templates/storefront/src/modules/layout/components/push-notification-manager/index.tsx +191 -0
- package/templates/storefront/src/modules/layout/components/search-panel/index.tsx +136 -0
- package/templates/storefront/src/modules/layout/components/side-menu/index.tsx +144 -0
- package/templates/storefront/src/modules/layout/components/verification-banner/index.tsx +217 -0
- package/templates/storefront/src/modules/layout/components/wishlist-counter/index.tsx +17 -0
- package/templates/storefront/src/modules/layout/templates/footer/index.tsx +7 -0
- package/templates/storefront/src/modules/layout/templates/nav/index.tsx +14 -0
- package/templates/storefront/src/modules/order/components/cancel-order-modal/index.tsx +168 -0
- package/templates/storefront/src/modules/order/components/help/index.tsx +25 -0
- package/templates/storefront/src/modules/order/components/item/index.tsx +62 -0
- package/templates/storefront/src/modules/order/components/items/index.tsx +44 -0
- package/templates/storefront/src/modules/order/components/onboarding-cta/index.tsx +28 -0
- package/templates/storefront/src/modules/order/components/order-confirmation-back-handler/index.tsx +28 -0
- package/templates/storefront/src/modules/order/components/order-details/index.tsx +63 -0
- package/templates/storefront/src/modules/order/components/order-purchase-tracker/index.tsx +48 -0
- package/templates/storefront/src/modules/order/components/order-redesign/index.tsx +887 -0
- package/templates/storefront/src/modules/order/components/order-summary/index.tsx +60 -0
- package/templates/storefront/src/modules/order/components/payment-details/index.tsx +63 -0
- package/templates/storefront/src/modules/order/components/shipping-details/index.tsx +73 -0
- package/templates/storefront/src/modules/order/components/transfer-actions/index.tsx +81 -0
- package/templates/storefront/src/modules/order/components/transfer-image/index.tsx +275 -0
- package/templates/storefront/src/modules/order/templates/order-completed-template.tsx +233 -0
- package/templates/storefront/src/modules/order/templates/order-details-template.tsx +128 -0
- package/templates/storefront/src/modules/products/components/image-gallery/index.tsx +297 -0
- package/templates/storefront/src/modules/products/components/product-actions/index.tsx +1400 -0
- package/templates/storefront/src/modules/products/components/product-actions/mobile-actions.tsx +217 -0
- package/templates/storefront/src/modules/products/components/product-actions/option-select.tsx +62 -0
- package/templates/storefront/src/modules/products/components/product-onboarding-cta/index.tsx +30 -0
- package/templates/storefront/src/modules/products/components/product-preview/index.tsx +5 -0
- package/templates/storefront/src/modules/products/components/product-preview/price.tsx +29 -0
- package/templates/storefront/src/modules/products/components/product-price/index.tsx +58 -0
- package/templates/storefront/src/modules/products/components/product-rating/index.tsx +1 -0
- package/templates/storefront/src/modules/products/components/product-tabs/accordion.tsx +100 -0
- package/templates/storefront/src/modules/products/components/product-tabs/index.tsx +127 -0
- package/templates/storefront/src/modules/products/components/product-tabs/ratings-tab.tsx +598 -0
- package/templates/storefront/src/modules/products/components/product-view-tracker/index.tsx +53 -0
- package/templates/storefront/src/modules/products/components/related-products/index.tsx +152 -0
- package/templates/storefront/src/modules/products/components/review-modal/index.tsx +1 -0
- package/templates/storefront/src/modules/products/components/share-button/index.tsx +1 -0
- package/templates/storefront/src/modules/products/components/thumbnail/index.tsx +91 -0
- package/templates/storefront/src/modules/products/components/wishlist-icon/index.tsx +1 -0
- package/templates/storefront/src/modules/products/context/product-context.tsx +52 -0
- package/templates/storefront/src/modules/products/templates/index.tsx +26 -0
- package/templates/storefront/src/modules/products/templates/product-actions-wrapper/index.tsx +1 -0
- package/templates/storefront/src/modules/products/templates/product-info/index.tsx +2 -0
- package/templates/storefront/src/modules/shipping/components/free-shipping-price-nudge/index.tsx +283 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-button/index.tsx +5 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-card-details/index.tsx +10 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-cart-item/index.tsx +35 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-cart-totals/index.tsx +30 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-code-form/index.tsx +13 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-line-item/index.tsx +35 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-order-confirmed-header/index.tsx +14 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-order-information/index.tsx +36 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-order-items/index.tsx +43 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-order-summary/index.tsx +15 -0
- package/templates/storefront/src/modules/skeletons/components/skeleton-product-preview/index.tsx +15 -0
- package/templates/storefront/src/modules/skeletons/templates/skeleton-cart-page/index.tsx +65 -0
- package/templates/storefront/src/modules/skeletons/templates/skeleton-order-confirmed/index.tsx +21 -0
- package/templates/storefront/src/modules/skeletons/templates/skeleton-product-grid/index.tsx +23 -0
- package/templates/storefront/src/modules/skeletons/templates/skeleton-related-products/index.tsx +25 -0
- package/templates/storefront/src/modules/store/components/client-paginated-products.tsx +108 -0
- package/templates/storefront/src/modules/store/components/mobile-filters/index.tsx +135 -0
- package/templates/storefront/src/modules/store/components/pagination/index.tsx +118 -0
- package/templates/storefront/src/modules/store/components/product-list-view-tracker/index.tsx +43 -0
- package/templates/storefront/src/modules/store/components/refinement-list/index.tsx +299 -0
- package/templates/storefront/src/modules/store/components/refinement-list/sort-products/index.tsx +120 -0
- package/templates/storefront/src/modules/store/components/store-header/index.tsx +67 -0
- package/templates/storefront/src/modules/store/templates/index.tsx +1 -0
- package/templates/storefront/src/modules/store/templates/paginated-products.tsx +175 -0
- package/templates/storefront/src/modules/wishlist/components/wishlist-item/index.tsx +797 -0
- package/templates/storefront/src/modules/wishlist/templates/index.tsx +176 -0
- package/templates/storefront/src/storefront.config.ts +12 -0
- package/templates/storefront/src/styles/globals.css +326 -0
- package/templates/storefront/src/theme/valero/blocks/home/Features/index.tsx +61 -0
- package/templates/storefront/src/theme/valero/blocks/home/Hero/index.tsx +102 -0
- package/templates/storefront/src/theme/valero/blocks/home/LovedByMoms/index.tsx +407 -0
- package/templates/storefront/src/theme/valero/blocks/home/NewArrivals/index.tsx +48 -0
- package/templates/storefront/src/theme/valero/blocks/home/ShopByAge/index.tsx +128 -0
- package/templates/storefront/src/theme/valero/blocks/home/ShopByCategory/index.tsx +409 -0
- package/templates/storefront/src/theme/valero/blocks/home/Testimonials/index.tsx +697 -0
- package/templates/storefront/src/theme/valero/blocks/home/WhyChooseUs/index.tsx +62 -0
- package/templates/storefront/src/theme/valero/layouts/MainLayoutShell.tsx +14 -0
- package/templates/storefront/src/theme/valero/primitives/Button.tsx +28 -0
- package/templates/storefront/src/theme/valero/primitives/Card.tsx +32 -0
- package/templates/storefront/src/theme/valero/primitives/index.ts +2 -0
- package/templates/storefront/src/theme/valero/slots/account/ForgotPassword/index.tsx +1 -0
- package/templates/storefront/src/theme/valero/slots/account/Login/index.tsx +1 -0
- package/templates/storefront/src/theme/valero/slots/account/LoginTemplate/index.tsx +44 -0
- package/templates/storefront/src/theme/valero/slots/account/Register/index.tsx +1 -0
- package/templates/storefront/src/theme/valero/slots/cart/CartItem/index.tsx +11 -0
- package/templates/storefront/src/theme/valero/slots/cart/CartSummary/index.tsx +13 -0
- package/templates/storefront/src/theme/valero/slots/checkout/CheckoutForm/index.tsx +1 -0
- package/templates/storefront/src/theme/valero/slots/checkout/CheckoutSummary/index.tsx +1 -0
- package/templates/storefront/src/theme/valero/slots/layout/Footer/index.tsx +104 -0
- package/templates/storefront/src/theme/valero/slots/layout/Nav/index.tsx +97 -0
- package/templates/storefront/src/theme/valero/slots/layout/PromoBar/index.tsx +19 -0
- package/templates/storefront/src/theme/valero/slots/layout/PromoBar/promo-bar-content.tsx +174 -0
- package/templates/storefront/src/theme/valero/slots/order/OrderDetails/index.tsx +12 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductCTASection.tsx +191 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductDetailsSection.tsx +137 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductFeaturePanel.tsx +245 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductHighlightsSection.tsx +98 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductOptionsSection.tsx +233 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductPriceSection.tsx +53 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/ProductTrustSection.tsx +84 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductActions/index.tsx +161 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductCard/index.tsx +132 -0
- package/templates/storefront/src/theme/valero/slots/product/ProductInfo/index.tsx +40 -0
- package/templates/storefront/src/theme/valero/templates/StorePage/index.tsx +154 -0
- package/templates/storefront/src/theme/valero/tokens/colors.js +16 -0
- package/templates/storefront/src/theme/valero/tokens/colors.ts +21 -0
- package/templates/storefront/src/theme/valero/tokens/fonts.ts +13 -0
- package/templates/storefront/src/theme/valero/tokens/index.ts +3 -0
- package/templates/storefront/src/theme/valero/tokens/spacing.ts +9 -0
- package/templates/storefront/src/theme/valero/tokens/theme.css +91 -0
- package/templates/storefront/tailwind.config.js +221 -0
- package/templates/storefront/tsconfig.json +30 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import { Heading, Text, clx } from "@medusajs/ui"
|
|
4
|
+
import { convertToLocale } from "@core/util/money"
|
|
5
|
+
import { HttpTypes } from "@medusajs/types"
|
|
6
|
+
|
|
7
|
+
type AppliedPromotionsProps = {
|
|
8
|
+
cart: HttpTypes.StoreCart & {
|
|
9
|
+
promotions: HttpTypes.StorePromotion[]
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const AppliedPromotions = ({ cart }: AppliedPromotionsProps) => {
|
|
14
|
+
const { promotions = [] } = cart
|
|
15
|
+
|
|
16
|
+
if (promotions.length === 0) {
|
|
17
|
+
return null
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<div className="w-full mb-6">
|
|
22
|
+
{/* Single Promotion Display - Responsive Fixes */}
|
|
23
|
+
{promotions.length === 1 && (
|
|
24
|
+
<div className="rounded-2xl p-3.5 sm:p-5 border border-brand-accent-border bg-brand-accent-muted">
|
|
25
|
+
{promotions.map((promotion: any) => {
|
|
26
|
+
const isPercentage = promotion.application_method?.type === "percentage"
|
|
27
|
+
const discountValue = promotion.application_method?.value
|
|
28
|
+
return (
|
|
29
|
+
<div key={promotion.id} className="w-full">
|
|
30
|
+
<div className="flex items-start sm:items-center justify-between gap-x-2">
|
|
31
|
+
<div className="flex items-center gap-x-2.5 sm:gap-x-4 overflow-hidden">
|
|
32
|
+
{/* Circle badge for single promotion */}
|
|
33
|
+
<div className="w-10 h-10 min-[380px]:w-12 min-[380px]:h-12 sm:w-16 sm:h-16 rounded-full bg-white flex items-center justify-center flex-shrink-0 shadow-sm border border-brand-accent-border p-1">
|
|
34
|
+
<span className={clx("font-bold text-brand-accent text-center leading-tight whitespace-nowrap",
|
|
35
|
+
isPercentage ? "text-xs sm:text-xl" : "text-[10px] sm:text-sm")}>
|
|
36
|
+
{isPercentage ? `${discountValue}%` : convertToLocale({ amount: discountValue || 0, currency_code: cart.currency_code })}
|
|
37
|
+
</span>
|
|
38
|
+
</div>
|
|
39
|
+
<div className="flex flex-col min-w-0">
|
|
40
|
+
<div className="flex items-center gap-x-1.5 flex-wrap gap-y-1">
|
|
41
|
+
<Heading level="h3" className="text-sm sm:text-lg font-bold text-heading leading-tight">Offer Applied</Heading>
|
|
42
|
+
<span className="bg-brand-accent/20 text-brand-accent text-[9px] sm:text-xs px-2 py-0.5 rounded-full font-bold uppercase tracking-wider h-fit">{promotion.code}</span>
|
|
43
|
+
</div>
|
|
44
|
+
<Text className="text-[10px] sm:text-sm text-gray-500 mt-0.5 leading-snug font-medium">Extra savings added successfully!</Text>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<div className="text-right flex-shrink-0 flex flex-col items-end">
|
|
48
|
+
<Text className="text-[9px] sm:text-xs font-bold text-gray-400 uppercase tracking-widest whitespace-nowrap">You Saved</Text>
|
|
49
|
+
<Text className="text-base min-[380px]:text-lg sm:text-2xl font-black text-brand-accent leading-none mt-0.5">
|
|
50
|
+
{convertToLocale({ amount: cart.discount_total || 0, currency_code: cart.currency_code })}
|
|
51
|
+
</Text>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
<div className="mt-3 sm:mt-4 pt-3 border-t border-brand-accent-border/50">
|
|
55
|
+
<div className="flex items-center gap-2">
|
|
56
|
+
<div className="w-1.5 h-1.5 sm:w-2 sm:h-2 rounded-full bg-green-500 animate-pulse"></div>
|
|
57
|
+
<Text className="text-[9px] sm:text-xs font-bold text-brand-success uppercase tracking-widest leading-none">Best value applied to your bag</Text>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
)
|
|
62
|
+
})}
|
|
63
|
+
</div>
|
|
64
|
+
)}
|
|
65
|
+
|
|
66
|
+
{/* Multiple Promotions Display */}
|
|
67
|
+
{promotions.length > 1 && (
|
|
68
|
+
<div className="rounded-2xl p-4 min-[550px]:p-5 border border-brand-accent-border bg-brand-accent-muted">
|
|
69
|
+
<div className="flex items-center justify-between gap-4">
|
|
70
|
+
<div className="flex items-center gap-4 text-left">
|
|
71
|
+
<div className="w-10 h-10 min-[550px]:w-14 min-[550px]:h-14 rounded-full bg-white flex items-center justify-center flex-shrink-0 shadow-sm border border-brand-accent-border">
|
|
72
|
+
<span className="text-xl min-[550px]:text-2xl font-black text-brand-accent">%</span>
|
|
73
|
+
</div>
|
|
74
|
+
<div>
|
|
75
|
+
<Heading level="h3" className="text-base min-[550px]:text-lg font-bold text-heading leading-tight">Total Offers Applied</Heading>
|
|
76
|
+
<div className="flex flex-wrap gap-2 mt-2">
|
|
77
|
+
{promotions.map((p: any) => (
|
|
78
|
+
<span key={p.id} className="bg-white border border-brand-accent-border text-brand-accent text-[10px] sm:text-xs px-2.5 py-1 rounded-full font-bold uppercase shadow-sm">{p.code}</span>
|
|
79
|
+
))}
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
<div className="text-right flex-shrink-0">
|
|
84
|
+
<Text className="text-[10px] min-[550px]:text-xs font-bold text-gray-400 uppercase tracking-widest">Total Saved</Text>
|
|
85
|
+
<Text className="text-xl min-[550px]:text-2xl font-black text-brand-accent leading-none">
|
|
86
|
+
{convertToLocale({ amount: cart.discount_total || 0, currency_code: cart.currency_code })}
|
|
87
|
+
</Text>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
<div className="mt-4 pt-4 border-t border-brand-accent-border/50 space-y-3 text-left">
|
|
92
|
+
{promotions.map((promotion: any) => {
|
|
93
|
+
const isPercentage = promotion.application_method?.type === "percentage"
|
|
94
|
+
const discountValue = promotion.application_method?.value
|
|
95
|
+
return (
|
|
96
|
+
<div key={promotion.id} className="flex items-center justify-between text-sm">
|
|
97
|
+
<div className="flex flex-col">
|
|
98
|
+
<span className="font-bold text-gray-700 leading-tight">{promotion.is_automatic ? "Automatic Offer" : `Coupon: ${promotion.code}`}</span>
|
|
99
|
+
<span className="text-gray-400 font-medium leading-tight text-[10px] min-[550px]:text-xs">Savings added to your items</span>
|
|
100
|
+
</div>
|
|
101
|
+
<div className="bg-white px-3 py-1.5 rounded-xl border border-brand-accent-border font-black text-brand-accent shadow-sm ml-4 whitespace-nowrap text-sm min-[550px]:text-base">
|
|
102
|
+
{isPercentage ? `${discountValue}% Off` : convertToLocale({ amount: discountValue || 0, currency_code: cart.currency_code }) + " Off"}
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
)
|
|
106
|
+
})}
|
|
107
|
+
</div>
|
|
108
|
+
|
|
109
|
+
<div className="mt-4 pt-3 border-t border-brand-accent-border/50">
|
|
110
|
+
<div className="flex items-center gap-2 text-left">
|
|
111
|
+
<div className="w-1.5 h-1.5 rounded-full bg-green-500"></div>
|
|
112
|
+
<Text className="text-[10px] min-[550px]:text-xs font-bold text-brand-success uppercase tracking-widest leading-none">Maximum benefits applied</Text>
|
|
113
|
+
</div>
|
|
114
|
+
</div>
|
|
115
|
+
</div>
|
|
116
|
+
)}
|
|
117
|
+
</div>
|
|
118
|
+
)
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export default AppliedPromotions
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import { setShippingMethod } from "@core/data/cart"
|
|
4
|
+
import { calculatePriceForShippingOption } from "@core/data/fulfillment"
|
|
5
|
+
import { convertToLocale } from "@core/util/money"
|
|
6
|
+
import { Loader } from "@medusajs/icons"
|
|
7
|
+
import { HttpTypes } from "@medusajs/types"
|
|
8
|
+
import { Heading, Text, clx } from "@medusajs/ui"
|
|
9
|
+
import { Radio, RadioGroup } from "@headlessui/react"
|
|
10
|
+
import { useEffect, useState } from "react"
|
|
11
|
+
|
|
12
|
+
type CartDeliverySelectionProps = {
|
|
13
|
+
cart: HttpTypes.StoreCart | null
|
|
14
|
+
availableShippingMethods?: HttpTypes.StoreCartShippingOption[] | null
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const CartDeliverySelection = ({
|
|
18
|
+
cart,
|
|
19
|
+
availableShippingMethods,
|
|
20
|
+
}: CartDeliverySelectionProps) => {
|
|
21
|
+
const [shippingMethodId, setShippingMethodId] = useState<string | null>(
|
|
22
|
+
cart?.shipping_methods?.at(-1)?.shipping_option_id || null
|
|
23
|
+
)
|
|
24
|
+
const [isLoadingShipping, setIsLoadingShipping] = useState(false)
|
|
25
|
+
const [isLoadingPrices, setIsLoadingPrices] = useState(true)
|
|
26
|
+
const [calculatedPricesMap, setCalculatedPricesMap] = useState<
|
|
27
|
+
Record<string, number>
|
|
28
|
+
>({})
|
|
29
|
+
const [shippingError, setShippingError] = useState<string | null>(null)
|
|
30
|
+
|
|
31
|
+
// Filter shipping methods (exclude pickup)
|
|
32
|
+
const _shippingMethods =
|
|
33
|
+
availableShippingMethods?.filter(
|
|
34
|
+
(sm) => (sm as any).service_zone?.fulfillment_set?.type !== "pickup"
|
|
35
|
+
) || []
|
|
36
|
+
|
|
37
|
+
// Calculate shipping prices
|
|
38
|
+
useEffect(() => {
|
|
39
|
+
if (!cart || !_shippingMethods.length) {
|
|
40
|
+
setIsLoadingPrices(false)
|
|
41
|
+
return
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
setIsLoadingPrices(true)
|
|
45
|
+
const promises = _shippingMethods
|
|
46
|
+
.filter((sm) => sm.price_type === "calculated")
|
|
47
|
+
.map((sm) => calculatePriceForShippingOption(sm.id, cart.id))
|
|
48
|
+
|
|
49
|
+
if (promises.length) {
|
|
50
|
+
Promise.allSettled(promises).then((res) => {
|
|
51
|
+
const pricesMap: Record<string, number> = {}
|
|
52
|
+
res
|
|
53
|
+
.filter((r) => r.status === "fulfilled")
|
|
54
|
+
.forEach((p) => (pricesMap[p.value?.id || ""] = p.value?.amount!))
|
|
55
|
+
|
|
56
|
+
setCalculatedPricesMap(pricesMap)
|
|
57
|
+
setIsLoadingPrices(false)
|
|
58
|
+
})
|
|
59
|
+
} else {
|
|
60
|
+
setIsLoadingPrices(false)
|
|
61
|
+
}
|
|
62
|
+
}, [availableShippingMethods, cart, _shippingMethods.length])
|
|
63
|
+
|
|
64
|
+
const handleSetShippingMethod = async (id: string) => {
|
|
65
|
+
if (!cart) return
|
|
66
|
+
|
|
67
|
+
setShippingError(null)
|
|
68
|
+
setIsLoadingShipping(true)
|
|
69
|
+
const currentId = shippingMethodId
|
|
70
|
+
setShippingMethodId(id)
|
|
71
|
+
|
|
72
|
+
await setShippingMethod({ cartId: cart.id, shippingMethodId: id })
|
|
73
|
+
.catch((err) => {
|
|
74
|
+
setShippingMethodId(currentId)
|
|
75
|
+
setShippingError(err.message)
|
|
76
|
+
})
|
|
77
|
+
.finally(() => {
|
|
78
|
+
setIsLoadingShipping(false)
|
|
79
|
+
})
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// Don't show if no shipping methods available
|
|
83
|
+
if (!availableShippingMethods || availableShippingMethods.length === 0) {
|
|
84
|
+
return null
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
return (
|
|
88
|
+
<div className="bg-white mb-6">
|
|
89
|
+
<Heading
|
|
90
|
+
level="h3"
|
|
91
|
+
className="text-2xl font-bold text-gray-900 mb-4"
|
|
92
|
+
>
|
|
93
|
+
Delivery
|
|
94
|
+
</Heading>
|
|
95
|
+
|
|
96
|
+
<div className="mb-4">
|
|
97
|
+
<Text className="text-base font-medium text-gray-900 mb-1">
|
|
98
|
+
Shipping method
|
|
99
|
+
</Text>
|
|
100
|
+
<Text className="text-sm text-gray-500">
|
|
101
|
+
How would you like your order delivered
|
|
102
|
+
</Text>
|
|
103
|
+
</div>
|
|
104
|
+
|
|
105
|
+
<RadioGroup
|
|
106
|
+
value={shippingMethodId}
|
|
107
|
+
onChange={(value) => {
|
|
108
|
+
if (value && _shippingMethods.find((m) => m.id === value)) {
|
|
109
|
+
handleSetShippingMethod(value)
|
|
110
|
+
}
|
|
111
|
+
}}
|
|
112
|
+
>
|
|
113
|
+
<div className="space-y-2">
|
|
114
|
+
{_shippingMethods.map((option) => {
|
|
115
|
+
const isDisabled =
|
|
116
|
+
option.price_type === "calculated" &&
|
|
117
|
+
!isLoadingPrices &&
|
|
118
|
+
typeof calculatedPricesMap[option.id] !== "number"
|
|
119
|
+
|
|
120
|
+
const price =
|
|
121
|
+
option.price_type === "flat"
|
|
122
|
+
? option.amount!
|
|
123
|
+
: calculatedPricesMap[option.id]
|
|
124
|
+
|
|
125
|
+
const isSelected = option.id === shippingMethodId
|
|
126
|
+
|
|
127
|
+
return (
|
|
128
|
+
<Radio
|
|
129
|
+
key={option.id}
|
|
130
|
+
value={option.id}
|
|
131
|
+
disabled={isDisabled}
|
|
132
|
+
className={clx(
|
|
133
|
+
"flex items-center justify-between text-base cursor-pointer py-4 border rounded-lg px-6 transition-all",
|
|
134
|
+
{
|
|
135
|
+
"border-blue-600": isSelected,
|
|
136
|
+
"border-gray-300": !isSelected,
|
|
137
|
+
"opacity-50 cursor-not-allowed": isDisabled,
|
|
138
|
+
}
|
|
139
|
+
)}
|
|
140
|
+
style={
|
|
141
|
+
isSelected
|
|
142
|
+
? {
|
|
143
|
+
borderColor: "#2563eb",
|
|
144
|
+
borderWidth: "2px",
|
|
145
|
+
}
|
|
146
|
+
: {}
|
|
147
|
+
}
|
|
148
|
+
>
|
|
149
|
+
<div className="flex items-center gap-4">
|
|
150
|
+
<div className="relative flex h-5 w-5 items-center justify-center">
|
|
151
|
+
<div
|
|
152
|
+
className={clx(
|
|
153
|
+
"flex h-5 w-5 items-center justify-center rounded-full border-2 transition-all",
|
|
154
|
+
{
|
|
155
|
+
"border-blue-600 bg-blue-600": isSelected,
|
|
156
|
+
"border-gray-300 bg-white": !isSelected,
|
|
157
|
+
}
|
|
158
|
+
)}
|
|
159
|
+
style={
|
|
160
|
+
isSelected
|
|
161
|
+
? {
|
|
162
|
+
borderColor: "#2563eb",
|
|
163
|
+
backgroundColor: "#2563eb",
|
|
164
|
+
}
|
|
165
|
+
: {}
|
|
166
|
+
}
|
|
167
|
+
>
|
|
168
|
+
{isSelected && (
|
|
169
|
+
<div className="h-2 w-2 rounded-full bg-white"></div>
|
|
170
|
+
)}
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
<span className="text-base text-gray-900">{option.name}</span>
|
|
174
|
+
</div>
|
|
175
|
+
<span className="text-base text-gray-900 font-semibold">
|
|
176
|
+
{price && cart ? (
|
|
177
|
+
convertToLocale({
|
|
178
|
+
amount: price,
|
|
179
|
+
currency_code: cart.currency_code,
|
|
180
|
+
})
|
|
181
|
+
) : isLoadingPrices ? (
|
|
182
|
+
<Loader className="animate-spin w-4 h-4" />
|
|
183
|
+
) : (
|
|
184
|
+
"-"
|
|
185
|
+
)}
|
|
186
|
+
</span>
|
|
187
|
+
</Radio>
|
|
188
|
+
)
|
|
189
|
+
})}
|
|
190
|
+
</div>
|
|
191
|
+
</RadioGroup>
|
|
192
|
+
|
|
193
|
+
{shippingError && (
|
|
194
|
+
<div className="mt-4">
|
|
195
|
+
<Text className="text-sm text-red-600">{shippingError}</Text>
|
|
196
|
+
</div>
|
|
197
|
+
)}
|
|
198
|
+
</div>
|
|
199
|
+
)
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export default CartDeliverySelection
|
|
203
|
+
|