├── .eslintrc.js ├── .gitignore ├── .prettierrc.json ├── .yarn └── releases │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── LICENSE ├── app.json ├── apps ├── create-universal-medusa-app │ ├── .yarn │ │ └── install-state.gz │ ├── format-connection-string.ts │ ├── index.ts │ ├── package.json │ ├── postgres-client.ts │ ├── readme.md │ ├── run.js │ ├── tsconfig.json │ ├── utils │ │ ├── db │ │ │ └── index.ts │ │ └── get-current-os.ts │ └── yarn.lock ├── docs │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── blog │ │ ├── 2019-05-28-first-blog-post.md │ │ ├── 2019-05-29-long-blog-post.md │ │ ├── 2021-08-01-mdx-blog-post.mdx │ │ ├── 2021-08-26-welcome │ │ │ ├── docusaurus-plushie-banner.jpeg │ │ │ └── index.md │ │ └── authors.yml │ ├── docs │ │ ├── Styling │ │ │ ├── _category_.json │ │ │ ├── breakpoints.md │ │ │ ├── design-system.md │ │ │ ├── layouts.md │ │ │ └── tailwind-with-nativewind.md │ │ ├── headless-ecommerce │ │ │ ├── _category_.json │ │ │ └── about-medusa-js.md │ │ ├── intro.md │ │ ├── navigation │ │ │ ├── _category_.json │ │ │ ├── deep-links.md │ │ │ ├── discoverability │ │ │ │ ├── SEO.md │ │ │ │ ├── _category_.json │ │ │ │ └── app-clips.md │ │ │ ├── linking.md │ │ │ ├── routing.md │ │ │ └── use-universal-pathname.md │ │ └── project-structure │ │ │ ├── _category_.json │ │ │ ├── add-new-dependencies.md │ │ │ ├── apps-workspace.md │ │ │ └── packages-app-workspace.md │ ├── docusaurus.config.js │ ├── package.json │ ├── sidebars.js │ ├── src │ │ ├── components │ │ │ └── HomepageFeatures │ │ │ │ ├── index.js │ │ │ │ └── styles.module.css │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── _index.js │ │ │ ├── index.module.css │ │ │ └── markdown-page.md │ ├── static │ │ ├── .nojekyll │ │ └── img │ │ │ ├── favicon.ico │ │ │ └── logo.svg │ └── tailwind.config.js ├── expo │ ├── .gitignore │ ├── App.tsx │ ├── app-env.d.ts │ ├── app.json │ ├── app │ │ ├── (tabs) │ │ │ ├── (home) │ │ │ │ ├── _layout.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── products │ │ │ │ │ ├── [handle].tsx │ │ │ │ │ └── __layout.tsx │ │ │ │ └── store.tsx │ │ │ ├── _layout.tsx │ │ │ ├── account │ │ │ │ ├── _layout.tsx │ │ │ │ ├── addresses.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── login.tsx │ │ │ │ ├── orders.tsx │ │ │ │ └── profile.tsx │ │ │ ├── cart.tsx │ │ │ └── my-bag.tsx │ │ ├── [...unmatched].tsx │ │ ├── _layout.tsx │ │ ├── checkout.tsx │ │ └── order │ │ │ ├── confirmed │ │ │ └── [id].tsx │ │ │ └── details │ │ │ └── [id].tsx │ ├── babel.config.js │ ├── eas.json │ ├── index.js │ ├── metro.config.js │ ├── package.json │ ├── patches │ │ └── react-native-reanimated+3.0.2.patch │ ├── tailwind.config.js │ └── tsconfig.json ├── medusa-store │ ├── .babelrc.js │ ├── .env.template │ ├── .gitignore │ ├── README.md │ ├── data │ │ └── seed.json │ ├── index.js │ ├── medusa-config.js │ ├── package.json │ ├── src │ │ ├── api │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── routes │ │ │ │ └── store │ │ │ │ ├── custom-route-handler.ts │ │ │ │ └── index.ts │ │ ├── loaders │ │ │ └── README.md │ │ ├── migrations │ │ │ └── README.md │ │ ├── models │ │ │ └── README.md │ │ ├── services │ │ │ ├── README.md │ │ │ └── __tests__ │ │ │ │ └── test-service.spec.ts │ │ └── subscribers │ │ │ └── README.md │ ├── tsconfig.json │ └── tsconfig.spec.json └── next │ ├── .gitignore │ ├── app-env.d.ts │ ├── global.css │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── account │ │ ├── addresses.tsx │ │ ├── index.tsx │ │ ├── login.tsx │ │ ├── orders.tsx │ │ └── profile.tsx │ ├── cart.tsx │ ├── checkout.tsx │ ├── index.tsx │ ├── order │ │ ├── confirmed │ │ │ └── [id].tsx │ │ └── details │ │ │ └── [id].tsx │ ├── products │ │ └── [handle].tsx │ ├── store.tsx │ └── user │ │ └── [id].tsx │ ├── plugins │ └── swc_plugin_reanimated.wasm │ ├── postcss.config.js │ ├── public │ ├── cta_four.jpg │ ├── cta_one.jpg │ ├── cta_three.jpg │ ├── cta_two.jpg │ ├── favicon.ico │ ├── hero.jpg │ └── vercel.svg │ ├── tailwind.config.js │ └── tsconfig.json ├── package.json ├── packages └── app │ ├── assets │ └── hero.jpg │ ├── design │ ├── image.tsx │ ├── index.ts │ ├── layout.tsx │ ├── pressable.tsx │ ├── svg.tsx │ ├── tailwind │ │ ├── custom-css-classes.ts │ │ └── theme.js │ ├── typography.tsx │ └── view.tsx │ ├── index.ts │ ├── lib │ ├── config.ts │ ├── constants.ts │ ├── context │ │ ├── account-context.tsx │ │ ├── cart-dropdown-context.tsx │ │ ├── checkout-context.tsx │ │ ├── checkout-context.web.tsx │ │ ├── mobile-menu-context.tsx │ │ ├── modal-context.tsx │ │ ├── product-context.tsx │ │ └── store-context.tsx │ ├── data │ │ └── index.ts │ ├── hooks │ │ ├── use-country-options.tsx │ │ ├── use-current-width.tsx │ │ ├── use-debounce.tsx │ │ ├── use-enrich-line-items.tsx │ │ ├── use-in-view.tsx │ │ ├── use-layout-data.tsx │ │ ├── use-previews.tsx │ │ ├── use-product-price.tsx │ │ ├── use-product.tsx │ │ ├── use-toggle-state.tsx │ │ └── use-universal-pathname │ │ │ ├── index.tsx │ │ │ ├── useUniversalPathname.tsx │ │ │ └── useUniversalPathname.web.tsx │ └── util │ │ ├── can-buy.ts │ │ ├── get-collection-ids.ts │ │ ├── get-number-of-skeletons.ts │ │ ├── get-precentage-diff.ts │ │ ├── get-product-handles.ts │ │ ├── handle-error.ts │ │ ├── noop.ts │ │ ├── only-unique.ts │ │ ├── prices.ts │ │ ├── regex.ts │ │ ├── repeat.ts │ │ └── transform-product-preview.ts │ ├── modules │ ├── account │ │ ├── account-screen.tsx │ │ ├── addresses-screen.tsx │ │ ├── components │ │ │ ├── account-info │ │ │ │ └── index.tsx │ │ │ ├── account-nav │ │ │ │ └── index.tsx │ │ │ ├── address-book │ │ │ │ └── index.tsx │ │ │ ├── address-card │ │ │ │ ├── add-address.native.tsx │ │ │ │ ├── add-address.web.tsx │ │ │ │ ├── edit-address-modal.native.tsx │ │ │ │ ├── edit-address-modal.web.tsx │ │ │ │ └── remove-address-dialog.tsx │ │ │ ├── detail-container │ │ │ │ └── index.tsx │ │ │ ├── edit-button │ │ │ │ └── index.tsx │ │ │ ├── login-details │ │ │ │ ├── edit-email-modal.tsx │ │ │ │ ├── edit-password-modal.tsx │ │ │ │ └── index.tsx │ │ │ ├── login │ │ │ │ └── index.tsx │ │ │ ├── order-card │ │ │ │ └── index.tsx │ │ │ ├── order-overview │ │ │ │ └── index.tsx │ │ │ ├── overview │ │ │ │ └── index.tsx │ │ │ ├── profile-billing-address │ │ │ │ └── index.tsx │ │ │ ├── profile-email │ │ │ │ └── index.tsx │ │ │ ├── profile-name │ │ │ │ └── index.tsx │ │ │ ├── profile-password │ │ │ │ └── index.tsx │ │ │ ├── profile-phone │ │ │ │ └── index.tsx │ │ │ └── register │ │ │ │ └── index.tsx │ │ ├── login-screen.tsx │ │ ├── orders-screen.tsx │ │ ├── profile-screen.tsx │ │ └── templates │ │ │ ├── account-layout.tsx │ │ │ ├── addresses-template.tsx │ │ │ ├── login-template.tsx │ │ │ ├── order-details-template.tsx │ │ │ ├── orders-template.tsx │ │ │ ├── overview-template.tsx │ │ │ └── profile-template.tsx │ ├── cart │ │ ├── components │ │ │ ├── empty-cart-message │ │ │ │ └── index.tsx │ │ │ ├── item │ │ │ │ └── index.tsx │ │ │ └── sign-in-prompt │ │ │ │ └── index.tsx │ │ ├── screen.tsx │ │ └── templates │ │ │ ├── index.tsx │ │ │ ├── items.tsx │ │ │ └── summary.tsx │ ├── checkout │ │ ├── components │ │ │ ├── address-select │ │ │ │ ├── index.native.tsx │ │ │ │ └── index.web.tsx │ │ │ ├── addresses │ │ │ │ └── index.tsx │ │ │ ├── billing_address │ │ │ │ └── index.tsx │ │ │ ├── checkout-loader │ │ │ │ └── index.tsx │ │ │ ├── country-select │ │ │ │ ├── index.native.tsx │ │ │ │ └── index.web.tsx │ │ │ ├── discount-code │ │ │ │ └── index.tsx │ │ │ ├── gift-card │ │ │ │ └── index.tsx │ │ │ ├── payment-button │ │ │ │ └── index.tsx │ │ │ ├── payment-container │ │ │ │ └── index.tsx │ │ │ ├── payment-stripe │ │ │ │ └── index.tsx │ │ │ ├── payment-test │ │ │ │ └── index.tsx │ │ │ ├── payment-wrapper │ │ │ │ ├── index.tsx │ │ │ │ └── index.web.tsx │ │ │ ├── payment │ │ │ │ └── index.tsx │ │ │ ├── shipping-address │ │ │ │ └── index.tsx │ │ │ ├── shipping │ │ │ │ └── index.tsx │ │ │ └── step-container │ │ │ │ └── index.tsx │ │ ├── screen.tsx │ │ └── templates │ │ │ ├── checkout-form │ │ │ └── index.tsx │ │ │ ├── checkout-summary │ │ │ └── index.tsx │ │ │ └── index.tsx │ ├── common │ │ ├── components │ │ │ ├── button │ │ │ │ └── index.tsx │ │ │ ├── cart-totals │ │ │ │ └── index.tsx │ │ │ ├── checkbox │ │ │ │ └── index.tsx │ │ │ ├── connect-form │ │ │ │ └── index.tsx │ │ │ ├── hamburger │ │ │ │ └── index.tsx │ │ │ ├── head │ │ │ │ └── index.tsx │ │ │ ├── input │ │ │ │ └── index.tsx │ │ │ ├── line-item-options │ │ │ │ └── index.tsx │ │ │ ├── line-item-price │ │ │ │ └── index.tsx │ │ │ ├── modal │ │ │ │ └── index.tsx │ │ │ ├── native-select │ │ │ │ ├── index.tsx │ │ │ │ └── index.web.tsx │ │ │ ├── radio │ │ │ │ └── index.tsx │ │ │ └── underline-link │ │ │ │ └── index.tsx │ │ └── icons │ │ │ ├── alert.tsx │ │ │ ├── arrow-right.tsx │ │ │ ├── back.tsx │ │ │ ├── cart.tsx │ │ │ ├── chevron-down.tsx │ │ │ ├── edit.tsx │ │ │ ├── eye-off.tsx │ │ │ ├── eye.tsx │ │ │ ├── fast-delivery.tsx │ │ │ ├── gift.tsx │ │ │ ├── map-pin.tsx │ │ │ ├── minus.tsx │ │ │ ├── package.tsx │ │ │ ├── placeholder-image.tsx │ │ │ ├── plus.tsx │ │ │ ├── refresh.tsx │ │ │ ├── search.tsx │ │ │ ├── sorting.tsx │ │ │ ├── spinner.tsx │ │ │ ├── trash.tsx │ │ │ ├── user.tsx │ │ │ └── x.tsx │ ├── home │ │ ├── components │ │ │ ├── featured-products │ │ │ │ └── index.tsx │ │ │ └── hero │ │ │ │ └── index.tsx │ │ └── screen.tsx │ ├── layout │ │ ├── components │ │ │ ├── cart-dropdown │ │ │ │ └── index.tsx │ │ │ ├── country-select │ │ │ │ └── index.tsx │ │ │ ├── dropdown-menu │ │ │ │ └── index.tsx │ │ │ ├── footer-cta │ │ │ │ └── index.tsx │ │ │ ├── footer-nav │ │ │ │ └── index.tsx │ │ │ ├── medusa-cta │ │ │ │ └── index.tsx │ │ │ └── site-info │ │ │ │ └── index.tsx │ │ └── templates │ │ │ ├── footer │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── nav │ │ │ └── index.tsx │ ├── mobile-menu │ │ ├── components │ │ │ ├── container │ │ │ │ └── index.tsx │ │ │ ├── country-menu │ │ │ │ └── index.tsx │ │ │ ├── main-menu │ │ │ │ └── index.tsx │ │ │ └── search-menu │ │ │ │ └── index.tsx │ │ └── templates │ │ │ └── index.tsx │ ├── order │ │ ├── components │ │ │ ├── help │ │ │ │ └── index.tsx │ │ │ ├── items │ │ │ │ └── index.tsx │ │ │ ├── order-details │ │ │ │ └── index.tsx │ │ │ ├── order-summary │ │ │ │ └── index.tsx │ │ │ ├── payment-details │ │ │ │ └── index.tsx │ │ │ └── shipping-details │ │ │ │ └── index.tsx │ │ ├── order-confirmed-screen.tsx │ │ ├── order-details-screen.tsx │ │ └── templates │ │ │ ├── order-completed-template.tsx │ │ │ └── order-details-template.tsx │ ├── products │ │ ├── components │ │ │ ├── image-gallary │ │ │ │ └── index.tsx │ │ │ ├── infinite-products │ │ │ │ └── index.tsx │ │ │ ├── mobile-actions │ │ │ │ └── index.tsx │ │ │ ├── option-select │ │ │ │ └── index.tsx │ │ │ ├── product-actions │ │ │ │ └── index.tsx │ │ │ ├── product-preview │ │ │ │ └── index.tsx │ │ │ ├── product-tabs │ │ │ │ └── index.tsx │ │ │ ├── related-products │ │ │ │ └── index.tsx │ │ │ └── thumbnail │ │ │ │ └── index.tsx │ │ ├── screen.tsx │ │ └── templates │ │ │ ├── index.tsx │ │ │ └── product-info │ │ │ └── index.tsx │ ├── skeletons │ │ ├── components │ │ │ ├── skeleton-button │ │ │ │ └── index.tsx │ │ │ ├── skeleton-cart-item │ │ │ │ └── index.tsx │ │ │ ├── skeleton-cart-totals │ │ │ │ └── index.tsx │ │ │ ├── skeleton-code-form │ │ │ │ └── index.tsx │ │ │ ├── skeleton-line-item │ │ │ │ └── index.tsx │ │ │ ├── skeleton-order-confirmed-header │ │ │ │ └── index.tsx │ │ │ ├── skeleton-order-information │ │ │ │ └── index.tsx │ │ │ ├── skeleton-order-items │ │ │ │ └── index.tsx │ │ │ ├── skeleton-order-summary │ │ │ │ └── index.tsx │ │ │ ├── skeleton-product-preview │ │ │ │ └── index.tsx │ │ │ └── skeleton-product-tabs │ │ │ │ └── index.tsx │ │ └── templates │ │ │ ├── skeleton-cart-page │ │ │ └── index.tsx │ │ │ ├── skeleton-collection-page │ │ │ └── index.tsx │ │ │ ├── skeleton-order-confirmed │ │ │ └── index.tsx │ │ │ └── skeleton-product-page │ │ │ └── index.tsx │ ├── store │ │ ├── components │ │ │ └── refinement-list │ │ │ │ └── index.tsx │ │ └── store-screen.tsx │ └── user │ │ └── detail-screen.tsx │ ├── nativewind.d.ts │ ├── package.json │ ├── provider │ ├── bottom-sheet │ │ ├── index.tsx │ │ └── index.web.tsx │ ├── index.tsx │ ├── medusa │ │ └── index.tsx │ ├── navigation │ │ ├── index.tsx │ │ └── index.web.tsx │ ├── safe-area │ │ ├── index.tsx │ │ ├── index.web.tsx │ │ ├── use-safe-area.ts │ │ └── use-safe-area.web.ts │ └── toasts │ │ ├── index.tsx │ │ └── index.web.tsx │ ├── public │ ├── cta_four.jpg │ ├── cta_one.jpg │ ├── cta_three.jpg │ ├── cta_two.jpg │ ├── favicon.ico │ └── hero.jpg │ ├── rnw-overrides.d.ts │ ├── tsconfig.json │ └── types │ ├── global.ts │ ├── icon.ts │ └── medusa.ts ├── readme.md ├── tsconfig.json ├── turbo.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/.yarn/releases/yarn-3.4.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/LICENSE -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": {} 3 | } -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/.yarn/install-state.gz -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/format-connection-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/format-connection-string.ts -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/index.ts -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/package.json -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/postgres-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/postgres-client.ts -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/readme.md -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/run.js -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/tsconfig.json -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/utils/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/utils/db/index.ts -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/utils/get-current-os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/utils/get-current-os.ts -------------------------------------------------------------------------------- /apps/create-universal-medusa-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/create-universal-medusa-app/yarn.lock -------------------------------------------------------------------------------- /apps/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/.gitignore -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/babel.config.js -------------------------------------------------------------------------------- /apps/docs/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /apps/docs/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /apps/docs/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /apps/docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /apps/docs/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /apps/docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/blog/authors.yml -------------------------------------------------------------------------------- /apps/docs/docs/Styling/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/Styling/_category_.json -------------------------------------------------------------------------------- /apps/docs/docs/Styling/breakpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/Styling/breakpoints.md -------------------------------------------------------------------------------- /apps/docs/docs/Styling/design-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/Styling/design-system.md -------------------------------------------------------------------------------- /apps/docs/docs/Styling/layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/Styling/layouts.md -------------------------------------------------------------------------------- /apps/docs/docs/Styling/tailwind-with-nativewind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/Styling/tailwind-with-nativewind.md -------------------------------------------------------------------------------- /apps/docs/docs/headless-ecommerce/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/headless-ecommerce/_category_.json -------------------------------------------------------------------------------- /apps/docs/docs/headless-ecommerce/about-medusa-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/headless-ecommerce/about-medusa-js.md -------------------------------------------------------------------------------- /apps/docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/intro.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/_category_.json -------------------------------------------------------------------------------- /apps/docs/docs/navigation/deep-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/deep-links.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/discoverability/SEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/discoverability/SEO.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/discoverability/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/discoverability/_category_.json -------------------------------------------------------------------------------- /apps/docs/docs/navigation/discoverability/app-clips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/discoverability/app-clips.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/linking.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/routing.md -------------------------------------------------------------------------------- /apps/docs/docs/navigation/use-universal-pathname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/navigation/use-universal-pathname.md -------------------------------------------------------------------------------- /apps/docs/docs/project-structure/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/project-structure/_category_.json -------------------------------------------------------------------------------- /apps/docs/docs/project-structure/add-new-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/project-structure/add-new-dependencies.md -------------------------------------------------------------------------------- /apps/docs/docs/project-structure/apps-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/project-structure/apps-workspace.md -------------------------------------------------------------------------------- /apps/docs/docs/project-structure/packages-app-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docs/project-structure/packages-app-workspace.md -------------------------------------------------------------------------------- /apps/docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/docusaurus.config.js -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/sidebars.js -------------------------------------------------------------------------------- /apps/docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /apps/docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /apps/docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/css/custom.css -------------------------------------------------------------------------------- /apps/docs/src/pages/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/pages/_index.js -------------------------------------------------------------------------------- /apps/docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /apps/docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /apps/docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /apps/docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/docs/static/img/logo.svg -------------------------------------------------------------------------------- /apps/docs/tailwind.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/expo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/.gitignore -------------------------------------------------------------------------------- /apps/expo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/App.tsx -------------------------------------------------------------------------------- /apps/expo/app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app-env.d.ts -------------------------------------------------------------------------------- /apps/expo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app.json -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/(home)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/(home)/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/(home)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/(home)/index.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/(home)/products/[handle].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/(home)/products/[handle].tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/(home)/products/__layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/(home)/products/__layout.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/(home)/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/(home)/store.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/addresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/addresses.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/index.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/login.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/orders.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/account/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/account/profile.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/cart.tsx -------------------------------------------------------------------------------- /apps/expo/app/(tabs)/my-bag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/(tabs)/my-bag.tsx -------------------------------------------------------------------------------- /apps/expo/app/[...unmatched].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/[...unmatched].tsx -------------------------------------------------------------------------------- /apps/expo/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/app/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/checkout.tsx -------------------------------------------------------------------------------- /apps/expo/app/order/confirmed/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/order/confirmed/[id].tsx -------------------------------------------------------------------------------- /apps/expo/app/order/details/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/app/order/details/[id].tsx -------------------------------------------------------------------------------- /apps/expo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/babel.config.js -------------------------------------------------------------------------------- /apps/expo/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/eas.json -------------------------------------------------------------------------------- /apps/expo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/index.js -------------------------------------------------------------------------------- /apps/expo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/metro.config.js -------------------------------------------------------------------------------- /apps/expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/package.json -------------------------------------------------------------------------------- /apps/expo/patches/react-native-reanimated+3.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/patches/react-native-reanimated+3.0.2.patch -------------------------------------------------------------------------------- /apps/expo/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/expo/tailwind.config.js -------------------------------------------------------------------------------- /apps/expo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig" 3 | } 4 | -------------------------------------------------------------------------------- /apps/medusa-store/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/.babelrc.js -------------------------------------------------------------------------------- /apps/medusa-store/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/.env.template -------------------------------------------------------------------------------- /apps/medusa-store/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/.gitignore -------------------------------------------------------------------------------- /apps/medusa-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/README.md -------------------------------------------------------------------------------- /apps/medusa-store/data/seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/data/seed.json -------------------------------------------------------------------------------- /apps/medusa-store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/index.js -------------------------------------------------------------------------------- /apps/medusa-store/medusa-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/medusa-config.js -------------------------------------------------------------------------------- /apps/medusa-store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/package.json -------------------------------------------------------------------------------- /apps/medusa-store/src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/api/README.md -------------------------------------------------------------------------------- /apps/medusa-store/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/api/index.ts -------------------------------------------------------------------------------- /apps/medusa-store/src/api/routes/store/custom-route-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/api/routes/store/custom-route-handler.ts -------------------------------------------------------------------------------- /apps/medusa-store/src/api/routes/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/api/routes/store/index.ts -------------------------------------------------------------------------------- /apps/medusa-store/src/loaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/loaders/README.md -------------------------------------------------------------------------------- /apps/medusa-store/src/migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/migrations/README.md -------------------------------------------------------------------------------- /apps/medusa-store/src/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/models/README.md -------------------------------------------------------------------------------- /apps/medusa-store/src/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/services/README.md -------------------------------------------------------------------------------- /apps/medusa-store/src/services/__tests__/test-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/services/__tests__/test-service.spec.ts -------------------------------------------------------------------------------- /apps/medusa-store/src/subscribers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/src/subscribers/README.md -------------------------------------------------------------------------------- /apps/medusa-store/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/tsconfig.json -------------------------------------------------------------------------------- /apps/medusa-store/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/medusa-store/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/.gitignore -------------------------------------------------------------------------------- /apps/next/app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/app-env.d.ts -------------------------------------------------------------------------------- /apps/next/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/global.css -------------------------------------------------------------------------------- /apps/next/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/next-env.d.ts -------------------------------------------------------------------------------- /apps/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/next.config.js -------------------------------------------------------------------------------- /apps/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/package.json -------------------------------------------------------------------------------- /apps/next/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/_app.tsx -------------------------------------------------------------------------------- /apps/next/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/_document.tsx -------------------------------------------------------------------------------- /apps/next/pages/account/addresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/account/addresses.tsx -------------------------------------------------------------------------------- /apps/next/pages/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/account/index.tsx -------------------------------------------------------------------------------- /apps/next/pages/account/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/account/login.tsx -------------------------------------------------------------------------------- /apps/next/pages/account/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/account/orders.tsx -------------------------------------------------------------------------------- /apps/next/pages/account/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/account/profile.tsx -------------------------------------------------------------------------------- /apps/next/pages/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/cart.tsx -------------------------------------------------------------------------------- /apps/next/pages/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/checkout.tsx -------------------------------------------------------------------------------- /apps/next/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/index.tsx -------------------------------------------------------------------------------- /apps/next/pages/order/confirmed/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/order/confirmed/[id].tsx -------------------------------------------------------------------------------- /apps/next/pages/order/details/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/order/details/[id].tsx -------------------------------------------------------------------------------- /apps/next/pages/products/[handle].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/products/[handle].tsx -------------------------------------------------------------------------------- /apps/next/pages/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/store.tsx -------------------------------------------------------------------------------- /apps/next/pages/user/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/pages/user/[id].tsx -------------------------------------------------------------------------------- /apps/next/plugins/swc_plugin_reanimated.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/plugins/swc_plugin_reanimated.wasm -------------------------------------------------------------------------------- /apps/next/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/postcss.config.js -------------------------------------------------------------------------------- /apps/next/public/cta_four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/cta_four.jpg -------------------------------------------------------------------------------- /apps/next/public/cta_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/cta_one.jpg -------------------------------------------------------------------------------- /apps/next/public/cta_three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/cta_three.jpg -------------------------------------------------------------------------------- /apps/next/public/cta_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/cta_two.jpg -------------------------------------------------------------------------------- /apps/next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/favicon.ico -------------------------------------------------------------------------------- /apps/next/public/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/hero.jpg -------------------------------------------------------------------------------- /apps/next/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/public/vercel.svg -------------------------------------------------------------------------------- /apps/next/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/tailwind.config.js -------------------------------------------------------------------------------- /apps/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/apps/next/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/package.json -------------------------------------------------------------------------------- /packages/app/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/assets/hero.jpg -------------------------------------------------------------------------------- /packages/app/design/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/image.tsx -------------------------------------------------------------------------------- /packages/app/design/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/index.ts -------------------------------------------------------------------------------- /packages/app/design/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/layout.tsx -------------------------------------------------------------------------------- /packages/app/design/pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/pressable.tsx -------------------------------------------------------------------------------- /packages/app/design/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/svg.tsx -------------------------------------------------------------------------------- /packages/app/design/tailwind/custom-css-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/tailwind/custom-css-classes.ts -------------------------------------------------------------------------------- /packages/app/design/tailwind/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/tailwind/theme.js -------------------------------------------------------------------------------- /packages/app/design/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/typography.tsx -------------------------------------------------------------------------------- /packages/app/design/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/design/view.tsx -------------------------------------------------------------------------------- /packages/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/index.ts -------------------------------------------------------------------------------- /packages/app/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/config.ts -------------------------------------------------------------------------------- /packages/app/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const IS_BROWSER = typeof window !== "undefined" 2 | -------------------------------------------------------------------------------- /packages/app/lib/context/account-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/account-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/cart-dropdown-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/cart-dropdown-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/checkout-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/checkout-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/checkout-context.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/checkout-context.web.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/mobile-menu-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/mobile-menu-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/modal-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/modal-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/product-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/product-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/context/store-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/context/store-context.tsx -------------------------------------------------------------------------------- /packages/app/lib/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/data/index.ts -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-country-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-country-options.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-current-width.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-current-width.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-debounce.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-enrich-line-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-enrich-line-items.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-in-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-in-view.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-layout-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-layout-data.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-previews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-previews.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-product-price.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-product-price.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-product.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-toggle-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-toggle-state.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-universal-pathname/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-universal-pathname/index.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-universal-pathname/useUniversalPathname.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-universal-pathname/useUniversalPathname.tsx -------------------------------------------------------------------------------- /packages/app/lib/hooks/use-universal-pathname/useUniversalPathname.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/hooks/use-universal-pathname/useUniversalPathname.web.tsx -------------------------------------------------------------------------------- /packages/app/lib/util/can-buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/can-buy.ts -------------------------------------------------------------------------------- /packages/app/lib/util/get-collection-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/get-collection-ids.ts -------------------------------------------------------------------------------- /packages/app/lib/util/get-number-of-skeletons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/get-number-of-skeletons.ts -------------------------------------------------------------------------------- /packages/app/lib/util/get-precentage-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/get-precentage-diff.ts -------------------------------------------------------------------------------- /packages/app/lib/util/get-product-handles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/get-product-handles.ts -------------------------------------------------------------------------------- /packages/app/lib/util/handle-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/handle-error.ts -------------------------------------------------------------------------------- /packages/app/lib/util/noop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/noop.ts -------------------------------------------------------------------------------- /packages/app/lib/util/only-unique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/only-unique.ts -------------------------------------------------------------------------------- /packages/app/lib/util/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/prices.ts -------------------------------------------------------------------------------- /packages/app/lib/util/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/regex.ts -------------------------------------------------------------------------------- /packages/app/lib/util/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/repeat.ts -------------------------------------------------------------------------------- /packages/app/lib/util/transform-product-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/lib/util/transform-product-preview.ts -------------------------------------------------------------------------------- /packages/app/modules/account/account-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/account-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/addresses-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/addresses-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/account-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/account-info/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/account-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/account-nav/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-book/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-book/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-card/add-address.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-card/add-address.native.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-card/add-address.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-card/add-address.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-card/edit-address-modal.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-card/edit-address-modal.native.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-card/edit-address-modal.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-card/edit-address-modal.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/address-card/remove-address-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/address-card/remove-address-dialog.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/detail-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/detail-container/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/edit-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/edit-button/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/login-details/edit-email-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/login-details/edit-email-modal.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/login-details/edit-password-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/login-details/edit-password-modal.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/login-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/login-details/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/login/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/order-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/order-card/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/order-overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/order-overview/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/overview/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/profile-billing-address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/profile-billing-address/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/profile-email/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/profile-email/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/profile-name/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/profile-name/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/profile-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/profile-password/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/profile-phone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/profile-phone/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/components/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/components/register/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/login-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/login-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/orders-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/orders-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/profile-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/profile-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/account-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/account-layout.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/addresses-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/addresses-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/login-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/login-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/order-details-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/order-details-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/orders-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/orders-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/overview-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/overview-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/account/templates/profile-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/account/templates/profile-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/components/empty-cart-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/components/empty-cart-message/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/components/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/components/item/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/components/sign-in-prompt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/components/sign-in-prompt/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/templates/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/templates/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/templates/items.tsx -------------------------------------------------------------------------------- /packages/app/modules/cart/templates/summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/cart/templates/summary.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/address-select/index.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/address-select/index.native.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/address-select/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/address-select/index.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/addresses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/addresses/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/billing_address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/billing_address/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/checkout-loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/checkout-loader/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/country-select/index.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/country-select/index.native.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/country-select/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/country-select/index.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/discount-code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/discount-code/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/gift-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/gift-card/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-button/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-container/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-stripe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-stripe/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-test/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-wrapper/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment-wrapper/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment-wrapper/index.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/payment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/payment/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/shipping-address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/shipping-address/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/shipping/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/shipping/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/components/step-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/components/step-container/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/templates/checkout-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/templates/checkout-form/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/templates/checkout-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/templates/checkout-summary/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/checkout/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/checkout/templates/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/button/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/cart-totals/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/checkbox/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/connect-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/connect-form/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/hamburger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/hamburger/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/head/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/input/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/line-item-options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/line-item-options/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/line-item-price/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/line-item-price/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/modal/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/native-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/native-select/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/native-select/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/native-select/index.web.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/radio/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/components/underline-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/components/underline-link/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/alert.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/arrow-right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/arrow-right.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/back.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/cart.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/chevron-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/chevron-down.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/edit.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/eye-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/eye-off.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/eye.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/fast-delivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/fast-delivery.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/gift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/gift.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/map-pin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/map-pin.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/minus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/minus.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/package.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/package.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/placeholder-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/placeholder-image.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/plus.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/refresh.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/search.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/sorting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/sorting.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/spinner.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/trash.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/user.tsx -------------------------------------------------------------------------------- /packages/app/modules/common/icons/x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/common/icons/x.tsx -------------------------------------------------------------------------------- /packages/app/modules/home/components/featured-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/home/components/featured-products/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/home/components/hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/home/components/hero/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/home/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/home/screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/cart-dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/cart-dropdown/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/country-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/country-select/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/dropdown-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/dropdown-menu/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/footer-cta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/footer-cta/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/footer-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/footer-nav/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/medusa-cta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/medusa-cta/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/components/site-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/components/site-info/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/templates/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/templates/footer/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/templates/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/layout/templates/nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/layout/templates/nav/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/mobile-menu/components/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/mobile-menu/components/container/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/mobile-menu/components/country-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/mobile-menu/components/country-menu/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/mobile-menu/components/main-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/mobile-menu/components/main-menu/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/mobile-menu/components/search-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/mobile-menu/components/search-menu/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/mobile-menu/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/mobile-menu/templates/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/help/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/help/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/items/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/order-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/order-details/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/order-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/order-summary/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/payment-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/payment-details/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/components/shipping-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/components/shipping-details/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/order-confirmed-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/order-confirmed-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/order-details-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/order-details-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/templates/order-completed-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/templates/order-completed-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/order/templates/order-details-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/order/templates/order-details-template.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/image-gallary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/image-gallary/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/infinite-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/infinite-products/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/mobile-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/mobile-actions/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/option-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/option-select/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/product-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/product-actions/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/product-preview/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/product-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/product-tabs/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/related-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/related-products/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/components/thumbnail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/components/thumbnail/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/templates/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/products/templates/product-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/products/templates/product-info/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-button/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-cart-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-cart-item/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-cart-totals/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-code-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-code-form/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-line-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-line-item/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-order-confirmed-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-order-confirmed-header/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-order-information/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-order-information/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-order-items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-order-items/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-order-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-order-summary/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-product-preview/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/components/skeleton-product-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/components/skeleton-product-tabs/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/templates/skeleton-cart-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/templates/skeleton-cart-page/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/templates/skeleton-collection-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/templates/skeleton-collection-page/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/templates/skeleton-order-confirmed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/templates/skeleton-order-confirmed/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/skeletons/templates/skeleton-product-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/skeletons/templates/skeleton-product-page/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/store/components/refinement-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/store/components/refinement-list/index.tsx -------------------------------------------------------------------------------- /packages/app/modules/store/store-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/store/store-screen.tsx -------------------------------------------------------------------------------- /packages/app/modules/user/detail-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/modules/user/detail-screen.tsx -------------------------------------------------------------------------------- /packages/app/nativewind.d.ts: -------------------------------------------------------------------------------- 1 | import 'nativewind/types.d' 2 | -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/provider/bottom-sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/bottom-sheet/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/bottom-sheet/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/bottom-sheet/index.web.tsx -------------------------------------------------------------------------------- /packages/app/provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/medusa/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/medusa/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/navigation/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/navigation/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/navigation/index.web.tsx -------------------------------------------------------------------------------- /packages/app/provider/safe-area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/safe-area/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/safe-area/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/safe-area/index.web.tsx -------------------------------------------------------------------------------- /packages/app/provider/safe-area/use-safe-area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/safe-area/use-safe-area.ts -------------------------------------------------------------------------------- /packages/app/provider/safe-area/use-safe-area.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/safe-area/use-safe-area.web.ts -------------------------------------------------------------------------------- /packages/app/provider/toasts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/toasts/index.tsx -------------------------------------------------------------------------------- /packages/app/provider/toasts/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/provider/toasts/index.web.tsx -------------------------------------------------------------------------------- /packages/app/public/cta_four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/cta_four.jpg -------------------------------------------------------------------------------- /packages/app/public/cta_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/cta_one.jpg -------------------------------------------------------------------------------- /packages/app/public/cta_three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/cta_three.jpg -------------------------------------------------------------------------------- /packages/app/public/cta_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/cta_two.jpg -------------------------------------------------------------------------------- /packages/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/favicon.ico -------------------------------------------------------------------------------- /packages/app/public/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/public/hero.jpg -------------------------------------------------------------------------------- /packages/app/rnw-overrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/rnw-overrides.d.ts -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig" 3 | } 4 | -------------------------------------------------------------------------------- /packages/app/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/types/global.ts -------------------------------------------------------------------------------- /packages/app/types/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/types/icon.ts -------------------------------------------------------------------------------- /packages/app/types/medusa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/packages/app/types/medusa.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/universal-medusa/HEAD/yarn.lock --------------------------------------------------------------------------------