├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── media ├── about.jpeg ├── admin-collection.jpeg ├── admin-colors.jpeg ├── admin-edit-color.jpeg ├── admin-materials.jpeg ├── admin-product-type.jpeg ├── admin-product.jpeg ├── cart.jpeg ├── checkout-review.jpeg ├── checkout.jpeg ├── collection.jpeg ├── home.jpeg ├── inspiration.jpeg ├── legal-pages.jpeg ├── order-confirmation.jpeg ├── product-add-missing-color.jpeg ├── product-missing-color.jpeg ├── product.jpeg ├── store.jpeg └── storefront-demo.mp4 ├── medusa ├── .env.template ├── .env.test ├── .gitignore ├── .npmrc ├── .vscode │ └── settings.json ├── .yarnrc.yml ├── README.md ├── docker-compose.yml ├── instrumentation.js ├── integration-tests │ └── http │ │ ├── README.md │ │ └── health.spec.ts ├── jest.config.js ├── medusa-config.js ├── package.json ├── src │ ├── .DS_Store │ ├── admin │ │ ├── README.md │ │ ├── components │ │ │ ├── EditMaterialDrawer.tsx │ │ │ ├── Form │ │ │ │ ├── Form.tsx │ │ │ │ ├── ImageField.tsx │ │ │ │ ├── InputField.tsx │ │ │ │ ├── SelectField.tsx │ │ │ │ ├── SubmitButton.tsx │ │ │ │ └── TextareaField.tsx │ │ │ └── QueryClientProvider.tsx │ │ ├── hooks │ │ │ ├── fashion.ts │ │ │ └── images.ts │ │ ├── routes │ │ │ └── fashion │ │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── tsconfig.json │ │ └── widgets │ │ │ ├── collection-details.tsx │ │ │ ├── product-fashion.tsx │ │ │ └── product-type-details.tsx │ ├── api │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── admin │ │ │ ├── custom │ │ │ │ ├── collections │ │ │ │ │ └── [collectionId] │ │ │ │ │ │ └── details │ │ │ │ │ │ └── route.ts │ │ │ │ ├── index-products │ │ │ │ │ └── route.ts │ │ │ │ └── product-types │ │ │ │ │ └── [productTypeId] │ │ │ │ │ └── details │ │ │ │ │ └── route.ts │ │ │ ├── fashion │ │ │ │ ├── [id] │ │ │ │ │ ├── colors │ │ │ │ │ │ ├── [colorId] │ │ │ │ │ │ │ ├── restore │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── restore │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ └── products │ │ │ │ └── [id] │ │ │ │ └── fashion │ │ │ │ └── route.ts │ │ ├── middlewares.ts │ │ └── store │ │ │ └── custom │ │ │ ├── customer │ │ │ └── send-welcome-email │ │ │ │ └── route.ts │ │ │ ├── fashion │ │ │ └── [productHandle] │ │ │ │ └── route.ts │ │ │ ├── product-types │ │ │ ├── [id] │ │ │ │ └── route.ts │ │ │ ├── helpers.ts │ │ │ ├── middlewares.ts │ │ │ ├── query-config.ts │ │ │ ├── route.ts │ │ │ └── validators.ts │ │ │ └── stripe │ │ │ ├── get-payment-method │ │ │ └── [id] │ │ │ │ └── route.ts │ │ │ └── set-payment-method │ │ │ └── route.ts │ ├── jobs │ │ └── README.md │ ├── links │ │ └── README.md │ ├── modules │ │ ├── README.md │ │ ├── fashion │ │ │ ├── index.ts │ │ │ ├── migrations │ │ │ │ ├── .snapshot-medusa.json │ │ │ │ └── Migration20241002190028.ts │ │ │ ├── models │ │ │ │ ├── color.ts │ │ │ │ └── material.ts │ │ │ └── service.ts │ │ ├── meilisearch │ │ │ ├── index.ts │ │ │ ├── loader.ts │ │ │ ├── service.ts │ │ │ └── types.ts │ │ └── resend │ │ │ ├── emails │ │ │ ├── auth-email-confirm.tsx │ │ │ ├── auth-forgot-password.tsx │ │ │ ├── auth-password-reset.tsx │ │ │ ├── components │ │ │ │ └── EmailLayout.tsx │ │ │ ├── credit-card.png │ │ │ ├── index.ts │ │ │ ├── order-placed.tsx │ │ │ ├── order-update.tsx │ │ │ └── welcome.tsx │ │ │ ├── index.ts │ │ │ └── service.tsx │ ├── scripts │ │ ├── README.md │ │ ├── index-products.ts │ │ └── seed.ts │ ├── subscribers │ │ ├── README.md │ │ ├── auth-password-reset-notification.ts │ │ ├── customer-welcome-notification.ts │ │ ├── index-products.ts │ │ └── order-placed-notification.ts │ └── workflows │ │ ├── README.md │ │ ├── emit-customer-welcome-event.ts │ │ └── index-products.ts ├── tsconfig.json └── yarn.lock └── storefront ├── .env.template ├── .github ├── scripts │ └── medusa-config.js └── workflows │ └── test-e2e.yaml ├── .gitignore ├── .prettierrc ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── LICENSE ├── README.md ├── check-env-variables.js ├── e2e ├── .env.example ├── README.md ├── data │ ├── reset.ts │ └── seed.ts ├── fixtures │ ├── account │ │ ├── account-page.ts │ │ ├── addresses-page.ts │ │ ├── index.ts │ │ ├── login-page.ts │ │ ├── modals │ │ │ └── address-modal.ts │ │ ├── order-page.ts │ │ ├── orders-page.ts │ │ ├── overview-page.ts │ │ ├── profile-page.ts │ │ └── register-page.ts │ ├── base │ │ ├── base-modal.ts │ │ ├── base-page.ts │ │ ├── cart-dropdown.ts │ │ ├── nav-menu.ts │ │ └── search-modal.ts │ ├── cart-page.ts │ ├── category-page.ts │ ├── checkout-page.ts │ ├── index.ts │ ├── modals │ │ └── mobile-actions-modal.ts │ ├── order-page.ts │ ├── product-page.ts │ └── store-page.ts ├── index.ts ├── tests │ ├── authenticated │ │ ├── address.spec.ts │ │ ├── orders.spec.ts │ │ └── profile.spec.ts │ ├── global │ │ ├── public-setup.ts │ │ ├── setup.ts │ │ └── teardown.ts │ └── public │ │ ├── cart.spec.ts │ │ ├── checkout.spec.ts │ │ ├── discount.spec.ts │ │ ├── giftcard.spec.ts │ │ ├── login.spec.ts │ │ ├── register.spec.ts │ │ └── search.spec.ts └── utils │ ├── index.ts │ └── locators.ts ├── eslint.config.mjs ├── next-env.d.ts ├── next-sitemap.js ├── next.config.js ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── public ├── favicon.ico └── images │ └── content │ ├── dark-gray-three-seater-sofa.png │ ├── gray-arm-chair.png │ ├── gray-backrest-sofa-wooden-coffee-table.png │ ├── gray-one-seater-sofa-wooden-coffee-table.png │ ├── gray-sofa-against-concrete-wall.png │ ├── gray-three-seater-sofa.png │ ├── living-room-black-armchair-dark-gray-sofa.png │ ├── living-room-brown-armchair-gray-corner-sofa.png │ ├── living-room-dark-gray-corner-sofa-coffee-table.png │ ├── living-room-dark-green-three-seater-sofa.png │ ├── living-room-gray-armchair-two-seater-sofa.png │ ├── living-room-gray-three-seater-puffy-sofa.png │ ├── living-room-gray-three-seater-sofa.png │ ├── living-room-gray-two-seater-puffy-sofa.png │ └── white-two-seater-sofa.png ├── src ├── app │ ├── [countryCode] │ │ ├── (checkout) │ │ │ ├── checkout │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── not-found.tsx │ │ └── (main) │ │ │ ├── about │ │ │ └── page.tsx │ │ │ ├── account │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ ├── my-orders │ │ │ │ ├── [orderId] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── auth │ │ │ ├── forgot-password │ │ │ │ ├── page.tsx │ │ │ │ └── reset │ │ │ │ │ └── page.tsx │ │ │ ├── login │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── register │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ └── reset-password │ │ │ │ └── page.tsx │ │ │ ├── cart │ │ │ ├── loading.tsx │ │ │ ├── not-found.tsx │ │ │ └── page.tsx │ │ │ ├── collections │ │ │ └── [handle] │ │ │ │ └── page.tsx │ │ │ ├── cookie-policy │ │ │ └── page.tsx │ │ │ ├── inspiration │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ ├── order │ │ │ └── confirmed │ │ │ │ └── [id] │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── privacy-policy │ │ │ └── page.tsx │ │ │ ├── products │ │ │ └── [handle] │ │ │ │ └── page.tsx │ │ │ ├── search │ │ │ └── page.tsx │ │ │ ├── store │ │ │ └── page.tsx │ │ │ └── terms-of-use │ │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── robots.ts ├── components │ ├── Button.tsx │ ├── Carousel.tsx │ ├── CartDrawer.tsx │ ├── CartIcon.tsx │ ├── CollectionsSection.tsx │ ├── Dialog.tsx │ ├── Drawer.tsx │ ├── Footer.tsx │ ├── Forms.tsx │ ├── Header.tsx │ ├── HeaderDrawer.tsx │ ├── HeaderWrapper.tsx │ ├── Icon.tsx │ ├── IconCircle.tsx │ ├── Layout.tsx │ ├── Link.tsx │ ├── LocalizedLink.tsx │ ├── NewsletterForm.tsx │ ├── NumberField.tsx │ ├── ProductPageGallery.tsx │ ├── RegionSwitcher.tsx │ ├── SearchField.tsx │ ├── icons │ │ ├── ArrowLeft.tsx │ │ ├── ArrowRight.tsx │ │ ├── ArrowUpRight.tsx │ │ ├── Calendar.tsx │ │ ├── Case.tsx │ │ ├── Check.tsx │ │ ├── ChevronDown.tsx │ │ ├── ChevronLeft.tsx │ │ ├── ChevronRight.tsx │ │ ├── ChevronUp.tsx │ │ ├── Close.tsx │ │ ├── CreditCard.tsx │ │ ├── Heart.tsx │ │ ├── Info.tsx │ │ ├── Loader.tsx │ │ ├── MapPin.tsx │ │ ├── Menu.tsx │ │ ├── Minus.tsx │ │ ├── Package.tsx │ │ ├── Plus.tsx │ │ ├── Receipt.tsx │ │ ├── Search.tsx │ │ ├── Sliders.tsx │ │ ├── Trash.tsx │ │ ├── Truck.tsx │ │ ├── Undo.tsx │ │ └── User.tsx │ └── ui │ │ ├── Checkbox.tsx │ │ ├── Modal.tsx │ │ ├── Radio.tsx │ │ ├── Select.tsx │ │ ├── Skeleton.tsx │ │ ├── Slider.tsx │ │ ├── Tag.tsx │ │ └── TagList.tsx ├── hooks │ ├── cart.ts │ ├── country-code.tsx │ ├── customer.ts │ └── store.tsx ├── lib │ ├── config.ts │ ├── constants.tsx │ ├── data │ │ ├── cart.ts │ │ ├── categories.ts │ │ ├── collections.ts │ │ ├── cookies.ts │ │ ├── customer.ts │ │ ├── fulfillment.ts │ │ ├── orders.ts │ │ ├── payment.ts │ │ ├── product-types.ts │ │ ├── products.ts │ │ └── regions.ts │ ├── search-client.ts │ └── util │ │ ├── collections.ts │ │ ├── compare-addresses.ts │ │ ├── enrich-line-items.ts │ │ ├── env.ts │ │ ├── get-precentage-diff.ts │ │ ├── get-product-price.ts │ │ ├── inventory.ts │ │ ├── isEmpty.ts │ │ ├── medusa-error.ts │ │ ├── money.ts │ │ ├── react-query.tsx │ │ ├── repeat.ts │ │ └── sort-products.ts ├── middleware.ts ├── modules │ ├── account │ │ └── components │ │ │ ├── AddressMultiple.tsx │ │ │ ├── AddressSingle.tsx │ │ │ ├── DefaultBillingAddressSelect.tsx │ │ │ ├── DefaultShippingAddressSelect.tsx │ │ │ ├── DeleteAddressButton.tsx │ │ │ ├── PersonalInfoForm.tsx │ │ │ ├── RequestPasswordResetButton.tsx │ │ │ ├── SidebarNav.tsx │ │ │ ├── SignOutButton.tsx │ │ │ └── UpsertAddressForm.tsx │ ├── auth │ │ └── components │ │ │ ├── ForgotPasswordForm.tsx │ │ │ ├── LoginForm.tsx │ │ │ ├── ResetPasswordForm.tsx │ │ │ └── SignUpForm.tsx │ ├── cart │ │ ├── components │ │ │ ├── cart-totals │ │ │ │ └── index.tsx │ │ │ ├── discount-code │ │ │ │ └── index.tsx │ │ │ ├── empty-cart-message │ │ │ │ └── index.tsx │ │ │ └── item │ │ │ │ └── index.tsx │ │ ├── templates │ │ │ ├── index.tsx │ │ │ ├── items.tsx │ │ │ └── summary.tsx │ │ └── utils │ │ │ └── getCheckoutStep.tsx │ ├── checkout │ │ ├── components │ │ │ ├── addresses │ │ │ │ └── index.tsx │ │ │ ├── billing_address │ │ │ │ └── index.tsx │ │ │ ├── checkout-form │ │ │ │ └── index.tsx │ │ │ ├── checkout-summary-wrapper │ │ │ │ └── index.tsx │ │ │ ├── country-select │ │ │ │ └── index.tsx │ │ │ ├── discount-code │ │ │ │ └── index.tsx │ │ │ ├── email │ │ │ │ └── index.tsx │ │ │ ├── error-message │ │ │ │ └── index.tsx │ │ │ ├── mobile-checkout-summary-wrapper │ │ │ │ └── index.tsx │ │ │ ├── payment-button │ │ │ │ └── index.tsx │ │ │ ├── payment-card-button │ │ │ │ └── index.tsx │ │ │ ├── payment-container │ │ │ │ └── index.tsx │ │ │ ├── payment-test │ │ │ │ └── index.tsx │ │ │ ├── payment-wrapper │ │ │ │ ├── index.tsx │ │ │ │ └── stripe-wrapper.tsx │ │ │ ├── payment │ │ │ │ └── index.tsx │ │ │ ├── review │ │ │ │ └── index.tsx │ │ │ ├── shipping-address │ │ │ │ └── index.tsx │ │ │ └── shipping │ │ │ │ └── index.tsx │ │ └── templates │ │ │ ├── checkout-summary │ │ │ └── index.tsx │ │ │ └── mobile-checkout-summary │ │ │ └── index.tsx │ ├── collections │ │ └── templates │ │ │ └── index.tsx │ ├── common │ │ ├── components │ │ │ ├── cart-totals │ │ │ │ └── index.tsx │ │ │ ├── delete-button │ │ │ │ └── index.tsx │ │ │ ├── line-item-unit-price │ │ │ │ └── index.tsx │ │ │ └── submit-button │ │ │ │ └── index.tsx │ │ └── icons │ │ │ ├── bancontact.tsx │ │ │ ├── ideal.tsx │ │ │ ├── paypal.tsx │ │ │ ├── placeholder-image.tsx │ │ │ └── spinner.tsx │ ├── header │ │ └── components │ │ │ └── LoginLink.tsx │ ├── order │ │ ├── components │ │ │ ├── OrderTotals.tsx │ │ │ ├── item │ │ │ │ └── index.tsx │ │ │ └── payment-details │ │ │ │ └── index.tsx │ │ └── templates │ │ │ └── order-completed-template.tsx │ ├── products │ │ ├── components │ │ │ ├── image-gallery │ │ │ │ └── index.tsx │ │ │ ├── product-actions │ │ │ │ └── index.tsx │ │ │ ├── product-preview │ │ │ │ └── index.tsx │ │ │ ├── product-price │ │ │ │ └── index.tsx │ │ │ ├── related-products │ │ │ │ └── index.tsx │ │ │ └── thumbnail │ │ │ │ └── index.tsx │ │ └── templates │ │ │ ├── index.tsx │ │ │ ├── product-actions-wrapper │ │ │ └── index.tsx │ │ │ └── product-info │ │ │ └── index.tsx │ ├── skeletons │ │ ├── components │ │ │ ├── skeleton-button │ │ │ │ └── index.tsx │ │ │ ├── skeleton-cart-item │ │ │ │ └── index.tsx │ │ │ ├── skeleton-cart-totals │ │ │ │ └── index.tsx │ │ │ ├── skeleton-mobile-summary-trigger │ │ │ │ └── index.tsx │ │ │ ├── skeleton-order-summary │ │ │ │ └── index.tsx │ │ │ └── skeleton-product-preview │ │ │ │ └── index.tsx │ │ └── templates │ │ │ ├── skeleton-account-page │ │ │ └── index.tsx │ │ │ ├── skeleton-cart-page │ │ │ └── index.tsx │ │ │ ├── skeleton-checkout-summary │ │ │ └── index.tsx │ │ │ ├── skeleton-order-confirmed │ │ │ └── index.tsx │ │ │ ├── skeleton-product-grid │ │ │ └── index.tsx │ │ │ └── skeleton-related-products │ │ │ └── index.tsx │ └── store │ │ ├── components │ │ ├── collections-slider │ │ │ └── index.tsx │ │ ├── no-results.tsx │ │ │ └── index.tsx │ │ ├── pagination │ │ │ └── index.tsx │ │ └── refinement-list │ │ │ ├── category-filter │ │ │ └── index.tsx │ │ │ ├── collection-filter │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── mobile-filters │ │ │ └── index.tsx │ │ │ ├── mobile-sort │ │ │ └── index.tsx │ │ │ ├── sort-products │ │ │ └── index.tsx │ │ │ └── type-filter │ │ │ └── index.tsx │ │ └── templates │ │ ├── index.tsx │ │ └── paginated-products.tsx ├── styles │ └── globals.css └── types │ └── icon.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/README.md -------------------------------------------------------------------------------- /media/about.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/about.jpeg -------------------------------------------------------------------------------- /media/admin-collection.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-collection.jpeg -------------------------------------------------------------------------------- /media/admin-colors.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-colors.jpeg -------------------------------------------------------------------------------- /media/admin-edit-color.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-edit-color.jpeg -------------------------------------------------------------------------------- /media/admin-materials.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-materials.jpeg -------------------------------------------------------------------------------- /media/admin-product-type.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-product-type.jpeg -------------------------------------------------------------------------------- /media/admin-product.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/admin-product.jpeg -------------------------------------------------------------------------------- /media/cart.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/cart.jpeg -------------------------------------------------------------------------------- /media/checkout-review.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/checkout-review.jpeg -------------------------------------------------------------------------------- /media/checkout.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/checkout.jpeg -------------------------------------------------------------------------------- /media/collection.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/collection.jpeg -------------------------------------------------------------------------------- /media/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/home.jpeg -------------------------------------------------------------------------------- /media/inspiration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/inspiration.jpeg -------------------------------------------------------------------------------- /media/legal-pages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/legal-pages.jpeg -------------------------------------------------------------------------------- /media/order-confirmation.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/order-confirmation.jpeg -------------------------------------------------------------------------------- /media/product-add-missing-color.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/product-add-missing-color.jpeg -------------------------------------------------------------------------------- /media/product-missing-color.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/product-missing-color.jpeg -------------------------------------------------------------------------------- /media/product.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/product.jpeg -------------------------------------------------------------------------------- /media/store.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/store.jpeg -------------------------------------------------------------------------------- /media/storefront-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/media/storefront-demo.mp4 -------------------------------------------------------------------------------- /medusa/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/.env.template -------------------------------------------------------------------------------- /medusa/.env.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medusa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/.gitignore -------------------------------------------------------------------------------- /medusa/.npmrc: -------------------------------------------------------------------------------- 1 | node-linker=hoisted -------------------------------------------------------------------------------- /medusa/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /medusa/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /medusa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/README.md -------------------------------------------------------------------------------- /medusa/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/docker-compose.yml -------------------------------------------------------------------------------- /medusa/instrumentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/instrumentation.js -------------------------------------------------------------------------------- /medusa/integration-tests/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/integration-tests/http/README.md -------------------------------------------------------------------------------- /medusa/integration-tests/http/health.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/integration-tests/http/health.spec.ts -------------------------------------------------------------------------------- /medusa/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/jest.config.js -------------------------------------------------------------------------------- /medusa/medusa-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/medusa-config.js -------------------------------------------------------------------------------- /medusa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/package.json -------------------------------------------------------------------------------- /medusa/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/.DS_Store -------------------------------------------------------------------------------- /medusa/src/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/README.md -------------------------------------------------------------------------------- /medusa/src/admin/components/EditMaterialDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/EditMaterialDrawer.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/Form.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/ImageField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/ImageField.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/InputField.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/SelectField.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/SubmitButton.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/Form/TextareaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/Form/TextareaField.tsx -------------------------------------------------------------------------------- /medusa/src/admin/components/QueryClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/components/QueryClientProvider.tsx -------------------------------------------------------------------------------- /medusa/src/admin/hooks/fashion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/hooks/fashion.ts -------------------------------------------------------------------------------- /medusa/src/admin/hooks/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/hooks/images.ts -------------------------------------------------------------------------------- /medusa/src/admin/routes/fashion/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/routes/fashion/[id]/page.tsx -------------------------------------------------------------------------------- /medusa/src/admin/routes/fashion/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/routes/fashion/page.tsx -------------------------------------------------------------------------------- /medusa/src/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/tsconfig.json -------------------------------------------------------------------------------- /medusa/src/admin/widgets/collection-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/widgets/collection-details.tsx -------------------------------------------------------------------------------- /medusa/src/admin/widgets/product-fashion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/widgets/product-fashion.tsx -------------------------------------------------------------------------------- /medusa/src/admin/widgets/product-type-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/admin/widgets/product-type-details.tsx -------------------------------------------------------------------------------- /medusa/src/api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/.DS_Store -------------------------------------------------------------------------------- /medusa/src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/README.md -------------------------------------------------------------------------------- /medusa/src/api/admin/custom/collections/[collectionId]/details/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/custom/collections/[collectionId]/details/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/custom/index-products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/custom/index-products/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/custom/product-types/[productTypeId]/details/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/custom/product-types/[productTypeId]/details/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/[id]/colors/[colorId]/restore/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/[id]/colors/[colorId]/restore/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/[id]/colors/[colorId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/[id]/colors/[colorId]/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/[id]/colors/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/[id]/colors/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/[id]/restore/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/[id]/restore/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/[id]/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/fashion/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/fashion/route.ts -------------------------------------------------------------------------------- /medusa/src/api/admin/products/[id]/fashion/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/admin/products/[id]/fashion/route.ts -------------------------------------------------------------------------------- /medusa/src/api/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/middlewares.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/customer/send-welcome-email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/customer/send-welcome-email/route.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/fashion/[productHandle]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/fashion/[productHandle]/route.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/[id]/route.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/helpers.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/middlewares.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/query-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/query-config.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/route.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/product-types/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/product-types/validators.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/stripe/get-payment-method/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/stripe/get-payment-method/[id]/route.ts -------------------------------------------------------------------------------- /medusa/src/api/store/custom/stripe/set-payment-method/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/api/store/custom/stripe/set-payment-method/route.ts -------------------------------------------------------------------------------- /medusa/src/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/jobs/README.md -------------------------------------------------------------------------------- /medusa/src/links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/links/README.md -------------------------------------------------------------------------------- /medusa/src/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/README.md -------------------------------------------------------------------------------- /medusa/src/modules/fashion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/index.ts -------------------------------------------------------------------------------- /medusa/src/modules/fashion/migrations/.snapshot-medusa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/migrations/.snapshot-medusa.json -------------------------------------------------------------------------------- /medusa/src/modules/fashion/migrations/Migration20241002190028.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/migrations/Migration20241002190028.ts -------------------------------------------------------------------------------- /medusa/src/modules/fashion/models/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/models/color.ts -------------------------------------------------------------------------------- /medusa/src/modules/fashion/models/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/models/material.ts -------------------------------------------------------------------------------- /medusa/src/modules/fashion/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/fashion/service.ts -------------------------------------------------------------------------------- /medusa/src/modules/meilisearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/meilisearch/index.ts -------------------------------------------------------------------------------- /medusa/src/modules/meilisearch/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/meilisearch/loader.ts -------------------------------------------------------------------------------- /medusa/src/modules/meilisearch/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/meilisearch/service.ts -------------------------------------------------------------------------------- /medusa/src/modules/meilisearch/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/meilisearch/types.ts -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/auth-email-confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/auth-email-confirm.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/auth-forgot-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/auth-forgot-password.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/auth-password-reset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/auth-password-reset.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/components/EmailLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/components/EmailLayout.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/credit-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/credit-card.png -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/index.ts -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/order-placed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/order-placed.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/order-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/order-update.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/emails/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/emails/welcome.tsx -------------------------------------------------------------------------------- /medusa/src/modules/resend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/index.ts -------------------------------------------------------------------------------- /medusa/src/modules/resend/service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/modules/resend/service.tsx -------------------------------------------------------------------------------- /medusa/src/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/scripts/README.md -------------------------------------------------------------------------------- /medusa/src/scripts/index-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/scripts/index-products.ts -------------------------------------------------------------------------------- /medusa/src/scripts/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/scripts/seed.ts -------------------------------------------------------------------------------- /medusa/src/subscribers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/subscribers/README.md -------------------------------------------------------------------------------- /medusa/src/subscribers/auth-password-reset-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/subscribers/auth-password-reset-notification.ts -------------------------------------------------------------------------------- /medusa/src/subscribers/customer-welcome-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/subscribers/customer-welcome-notification.ts -------------------------------------------------------------------------------- /medusa/src/subscribers/index-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/subscribers/index-products.ts -------------------------------------------------------------------------------- /medusa/src/subscribers/order-placed-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/subscribers/order-placed-notification.ts -------------------------------------------------------------------------------- /medusa/src/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/workflows/README.md -------------------------------------------------------------------------------- /medusa/src/workflows/emit-customer-welcome-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/workflows/emit-customer-welcome-event.ts -------------------------------------------------------------------------------- /medusa/src/workflows/index-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/src/workflows/index-products.ts -------------------------------------------------------------------------------- /medusa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/tsconfig.json -------------------------------------------------------------------------------- /medusa/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/medusa/yarn.lock -------------------------------------------------------------------------------- /storefront/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.env.template -------------------------------------------------------------------------------- /storefront/.github/scripts/medusa-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.github/scripts/medusa-config.js -------------------------------------------------------------------------------- /storefront/.github/workflows/test-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.github/workflows/test-e2e.yaml -------------------------------------------------------------------------------- /storefront/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.gitignore -------------------------------------------------------------------------------- /storefront/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.prettierrc -------------------------------------------------------------------------------- /storefront/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/.yarn/install-state.gz -------------------------------------------------------------------------------- /storefront/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /storefront/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/LICENSE -------------------------------------------------------------------------------- /storefront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/README.md -------------------------------------------------------------------------------- /storefront/check-env-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/check-env-variables.js -------------------------------------------------------------------------------- /storefront/e2e/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/.env.example -------------------------------------------------------------------------------- /storefront/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/README.md -------------------------------------------------------------------------------- /storefront/e2e/data/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/data/reset.ts -------------------------------------------------------------------------------- /storefront/e2e/data/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/data/seed.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/account-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/account-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/addresses-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/addresses-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/index.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/login-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/login-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/modals/address-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/modals/address-modal.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/order-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/order-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/orders-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/orders-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/overview-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/overview-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/profile-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/profile-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/account/register-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/account/register-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/base/base-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/base/base-modal.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/base/base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/base/base-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/base/cart-dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/base/cart-dropdown.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/base/nav-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/base/nav-menu.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/base/search-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/base/search-modal.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/cart-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/cart-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/category-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/category-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/checkout-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/checkout-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/index.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/modals/mobile-actions-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/modals/mobile-actions-modal.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/order-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/order-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/product-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/product-page.ts -------------------------------------------------------------------------------- /storefront/e2e/fixtures/store-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/fixtures/store-page.ts -------------------------------------------------------------------------------- /storefront/e2e/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/index.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/authenticated/address.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/authenticated/address.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/authenticated/orders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/authenticated/orders.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/authenticated/profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/authenticated/profile.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/global/public-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/global/public-setup.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/global/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/global/setup.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/global/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/global/teardown.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/cart.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/cart.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/checkout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/checkout.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/discount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/discount.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/giftcard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/giftcard.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/login.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/register.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/register.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/tests/public/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/tests/public/search.spec.ts -------------------------------------------------------------------------------- /storefront/e2e/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/utils/index.ts -------------------------------------------------------------------------------- /storefront/e2e/utils/locators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/e2e/utils/locators.ts -------------------------------------------------------------------------------- /storefront/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/eslint.config.mjs -------------------------------------------------------------------------------- /storefront/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/next-env.d.ts -------------------------------------------------------------------------------- /storefront/next-sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/next-sitemap.js -------------------------------------------------------------------------------- /storefront/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/next.config.js -------------------------------------------------------------------------------- /storefront/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/package.json -------------------------------------------------------------------------------- /storefront/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/playwright.config.ts -------------------------------------------------------------------------------- /storefront/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/postcss.config.js -------------------------------------------------------------------------------- /storefront/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/favicon.ico -------------------------------------------------------------------------------- /storefront/public/images/content/dark-gray-three-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/dark-gray-three-seater-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/gray-arm-chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/gray-arm-chair.png -------------------------------------------------------------------------------- /storefront/public/images/content/gray-backrest-sofa-wooden-coffee-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/gray-backrest-sofa-wooden-coffee-table.png -------------------------------------------------------------------------------- /storefront/public/images/content/gray-one-seater-sofa-wooden-coffee-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/gray-one-seater-sofa-wooden-coffee-table.png -------------------------------------------------------------------------------- /storefront/public/images/content/gray-sofa-against-concrete-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/gray-sofa-against-concrete-wall.png -------------------------------------------------------------------------------- /storefront/public/images/content/gray-three-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/gray-three-seater-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-black-armchair-dark-gray-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-black-armchair-dark-gray-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-brown-armchair-gray-corner-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-brown-armchair-gray-corner-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-dark-gray-corner-sofa-coffee-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-dark-gray-corner-sofa-coffee-table.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-dark-green-three-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-dark-green-three-seater-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-gray-armchair-two-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-gray-armchair-two-seater-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-gray-three-seater-puffy-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-gray-three-seater-puffy-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-gray-three-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-gray-three-seater-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/living-room-gray-two-seater-puffy-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/living-room-gray-two-seater-puffy-sofa.png -------------------------------------------------------------------------------- /storefront/public/images/content/white-two-seater-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/public/images/content/white-two-seater-sofa.png -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(checkout)/checkout/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(checkout)/checkout/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(checkout)/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(checkout)/checkout/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(checkout)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(checkout)/layout.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(checkout)/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(checkout)/not-found.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/about/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/account/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/account/layout.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/account/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/account/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/account/my-orders/[orderId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/account/my-orders/[orderId]/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/account/my-orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/account/my-orders/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/account/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/forgot-password/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/forgot-password/reset/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/forgot-password/reset/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/login/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/login/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/login/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/register/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/register/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/register/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/auth/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/auth/reset-password/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/cart/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/cart/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/cart/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/cart/not-found.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/cart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/cart/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/collections/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/collections/[handle]/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/cookie-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/cookie-policy/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/inspiration/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/inspiration/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/layout.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/not-found.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/order/confirmed/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/order/confirmed/[id]/loading.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/order/confirmed/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/order/confirmed/[id]/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/privacy-policy/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/products/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/products/[handle]/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/search/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/store/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/store/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/[countryCode]/(main)/terms-of-use/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/[countryCode]/(main)/terms-of-use/page.tsx -------------------------------------------------------------------------------- /storefront/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/layout.tsx -------------------------------------------------------------------------------- /storefront/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/not-found.tsx -------------------------------------------------------------------------------- /storefront/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/app/robots.ts -------------------------------------------------------------------------------- /storefront/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Button.tsx -------------------------------------------------------------------------------- /storefront/src/components/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Carousel.tsx -------------------------------------------------------------------------------- /storefront/src/components/CartDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/CartDrawer.tsx -------------------------------------------------------------------------------- /storefront/src/components/CartIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/CartIcon.tsx -------------------------------------------------------------------------------- /storefront/src/components/CollectionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/CollectionsSection.tsx -------------------------------------------------------------------------------- /storefront/src/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Dialog.tsx -------------------------------------------------------------------------------- /storefront/src/components/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Drawer.tsx -------------------------------------------------------------------------------- /storefront/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Footer.tsx -------------------------------------------------------------------------------- /storefront/src/components/Forms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Forms.tsx -------------------------------------------------------------------------------- /storefront/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Header.tsx -------------------------------------------------------------------------------- /storefront/src/components/HeaderDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/HeaderDrawer.tsx -------------------------------------------------------------------------------- /storefront/src/components/HeaderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/HeaderWrapper.tsx -------------------------------------------------------------------------------- /storefront/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Icon.tsx -------------------------------------------------------------------------------- /storefront/src/components/IconCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/IconCircle.tsx -------------------------------------------------------------------------------- /storefront/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Layout.tsx -------------------------------------------------------------------------------- /storefront/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/Link.tsx -------------------------------------------------------------------------------- /storefront/src/components/LocalizedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/LocalizedLink.tsx -------------------------------------------------------------------------------- /storefront/src/components/NewsletterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/NewsletterForm.tsx -------------------------------------------------------------------------------- /storefront/src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/NumberField.tsx -------------------------------------------------------------------------------- /storefront/src/components/ProductPageGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ProductPageGallery.tsx -------------------------------------------------------------------------------- /storefront/src/components/RegionSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/RegionSwitcher.tsx -------------------------------------------------------------------------------- /storefront/src/components/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/SearchField.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ArrowLeft.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ArrowRight.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ArrowUpRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ArrowUpRight.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Calendar.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Case.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Case.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Check.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ChevronLeft.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ChevronRight.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/ChevronUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/ChevronUp.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Close.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/CreditCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/CreditCard.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Heart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Heart.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Info.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Loader.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/MapPin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/MapPin.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Menu.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Minus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Minus.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Package.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Package.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Plus.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Receipt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Receipt.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Search.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Sliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Sliders.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Trash.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Truck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Truck.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/Undo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/Undo.tsx -------------------------------------------------------------------------------- /storefront/src/components/icons/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/icons/User.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Checkbox.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Modal.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Radio.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Select.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Skeleton.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Slider.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/Tag.tsx -------------------------------------------------------------------------------- /storefront/src/components/ui/TagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/components/ui/TagList.tsx -------------------------------------------------------------------------------- /storefront/src/hooks/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/hooks/cart.ts -------------------------------------------------------------------------------- /storefront/src/hooks/country-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/hooks/country-code.tsx -------------------------------------------------------------------------------- /storefront/src/hooks/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/hooks/customer.ts -------------------------------------------------------------------------------- /storefront/src/hooks/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/hooks/store.tsx -------------------------------------------------------------------------------- /storefront/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/config.ts -------------------------------------------------------------------------------- /storefront/src/lib/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/constants.tsx -------------------------------------------------------------------------------- /storefront/src/lib/data/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/cart.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/categories.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/collections.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/cookies.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/customer.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/fulfillment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/fulfillment.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/orders.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/payment.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/product-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/product-types.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/products.ts -------------------------------------------------------------------------------- /storefront/src/lib/data/regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/data/regions.ts -------------------------------------------------------------------------------- /storefront/src/lib/search-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/search-client.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/collections.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/compare-addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/compare-addresses.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/enrich-line-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/enrich-line-items.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/env.ts: -------------------------------------------------------------------------------- 1 | export const getBaseURL = () => { 2 | return process.env.NEXT_PUBLIC_BASE_URL || "https://localhost:8000" 3 | } 4 | -------------------------------------------------------------------------------- /storefront/src/lib/util/get-precentage-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/get-precentage-diff.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/get-product-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/get-product-price.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/inventory.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/isEmpty.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/medusa-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/medusa-error.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/money.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/money.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/react-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/react-query.tsx -------------------------------------------------------------------------------- /storefront/src/lib/util/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/repeat.ts -------------------------------------------------------------------------------- /storefront/src/lib/util/sort-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/lib/util/sort-products.ts -------------------------------------------------------------------------------- /storefront/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/middleware.ts -------------------------------------------------------------------------------- /storefront/src/modules/account/components/AddressMultiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/AddressMultiple.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/AddressSingle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/AddressSingle.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/DefaultBillingAddressSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/DefaultBillingAddressSelect.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/DefaultShippingAddressSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/DefaultShippingAddressSelect.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/DeleteAddressButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/DeleteAddressButton.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/PersonalInfoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/PersonalInfoForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/RequestPasswordResetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/RequestPasswordResetButton.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/SidebarNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/SidebarNav.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/SignOutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/SignOutButton.tsx -------------------------------------------------------------------------------- /storefront/src/modules/account/components/UpsertAddressForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/account/components/UpsertAddressForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/auth/components/ForgotPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/auth/components/ForgotPasswordForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/auth/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/auth/components/LoginForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/auth/components/ResetPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/auth/components/ResetPasswordForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/auth/components/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/auth/components/SignUpForm.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/components/cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/components/cart-totals/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/components/discount-code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/components/discount-code/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/components/empty-cart-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/components/empty-cart-message/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/components/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/components/item/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/templates/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/templates/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/templates/items.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/templates/summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/templates/summary.tsx -------------------------------------------------------------------------------- /storefront/src/modules/cart/utils/getCheckoutStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/cart/utils/getCheckoutStep.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/addresses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/addresses/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/billing_address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/billing_address/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/checkout-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/checkout-form/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/checkout-summary-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/checkout-summary-wrapper/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/country-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/country-select/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/discount-code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/discount-code/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/email/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/email/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/error-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/error-message/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/mobile-checkout-summary-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/mobile-checkout-summary-wrapper/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-button/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-card-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-card-button/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-container/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-test/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-wrapper/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment-wrapper/stripe-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment-wrapper/stripe-wrapper.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/payment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/payment/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/review/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/review/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/shipping-address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/shipping-address/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/components/shipping/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/components/shipping/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/templates/checkout-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/templates/checkout-summary/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/checkout/templates/mobile-checkout-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/checkout/templates/mobile-checkout-summary/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/collections/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/collections/templates/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/components/cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/components/cart-totals/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/components/delete-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/components/delete-button/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/components/line-item-unit-price/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/components/line-item-unit-price/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/components/submit-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/components/submit-button/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/icons/bancontact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/icons/bancontact.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/icons/ideal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/icons/ideal.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/icons/paypal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/icons/paypal.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/icons/placeholder-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/icons/placeholder-image.tsx -------------------------------------------------------------------------------- /storefront/src/modules/common/icons/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/common/icons/spinner.tsx -------------------------------------------------------------------------------- /storefront/src/modules/header/components/LoginLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/header/components/LoginLink.tsx -------------------------------------------------------------------------------- /storefront/src/modules/order/components/OrderTotals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/order/components/OrderTotals.tsx -------------------------------------------------------------------------------- /storefront/src/modules/order/components/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/order/components/item/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/order/components/payment-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/order/components/payment-details/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/order/templates/order-completed-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/order/templates/order-completed-template.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/image-gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/image-gallery/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/product-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/product-actions/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/product-preview/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/product-price/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/product-price/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/related-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/related-products/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/components/thumbnail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/components/thumbnail/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/templates/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/templates/product-actions-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/templates/product-actions-wrapper/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/products/templates/product-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/products/templates/product-info/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-button/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-cart-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-cart-item/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-cart-totals/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-mobile-summary-trigger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-mobile-summary-trigger/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-order-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-order-summary/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/components/skeleton-product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/components/skeleton-product-preview/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-account-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-account-page/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-cart-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-cart-page/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-checkout-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-checkout-summary/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-order-confirmed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-order-confirmed/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-product-grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-product-grid/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/skeletons/templates/skeleton-related-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/skeletons/templates/skeleton-related-products/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/collections-slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/collections-slider/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/no-results.tsx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/no-results.tsx/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/pagination/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/category-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/category-filter/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/collection-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/collection-filter/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/mobile-filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/mobile-filters/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/mobile-sort/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/mobile-sort/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/sort-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/sort-products/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/components/refinement-list/type-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/components/refinement-list/type-filter/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/templates/index.tsx -------------------------------------------------------------------------------- /storefront/src/modules/store/templates/paginated-products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/modules/store/templates/paginated-products.tsx -------------------------------------------------------------------------------- /storefront/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/styles/globals.css -------------------------------------------------------------------------------- /storefront/src/types/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/src/types/icon.ts -------------------------------------------------------------------------------- /storefront/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/tailwind.config.js -------------------------------------------------------------------------------- /storefront/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/tsconfig.json -------------------------------------------------------------------------------- /storefront/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agilo/fashion-starter/HEAD/storefront/yarn.lock --------------------------------------------------------------------------------