├── .github ├── nodejs.version ├── renovate.json └── workflows │ ├── check.yml │ ├── commitlint.yml │ ├── nextjs_bundle_analysis.yml │ └── playwright.yml ├── .gitignore ├── .husky └── commit-msg ├── .releaserc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── package.json ├── renovate.json ├── starters ├── shopify-algolia │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlrc.ts │ ├── .prettierignore │ ├── README.md │ ├── app │ │ ├── (ai-browse) │ │ │ ├── _components │ │ │ │ ├── ai-commerce-provider.tsx │ │ │ │ ├── chat-input.tsx │ │ │ │ ├── chat-sidebar.tsx │ │ │ │ ├── chat-suggestions.tsx │ │ │ │ ├── context-reporter.tsx │ │ │ │ ├── floating-chat-box.tsx │ │ │ │ ├── textbox.tsx │ │ │ │ └── use-speech-recognition.ts │ │ │ ├── ai │ │ │ │ ├── category │ │ │ │ │ ├── clp │ │ │ │ │ │ └── [slug] │ │ │ │ │ │ │ ├── [page] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── plp │ │ │ │ │ │ └── [slug] │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── product │ │ │ │ │ └── [slug] │ │ │ │ │ │ ├── loading.tsx │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ └── search │ │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── (browse) │ │ │ ├── category │ │ │ │ ├── clp │ │ │ │ │ └── [slug] │ │ │ │ │ │ ├── [page] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ └── plp │ │ │ │ │ └── [slug] │ │ │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ ├── favorites │ │ │ │ └── page.tsx │ │ │ ├── global-error.tsx │ │ │ ├── home │ │ │ │ ├── [bucket] │ │ │ │ │ └── page.tsx │ │ │ │ └── _components │ │ │ │ │ ├── announcement-bar.tsx │ │ │ │ │ ├── carousel-section.tsx │ │ │ │ │ ├── categories-section.tsx │ │ │ │ │ ├── featured-products-section.tsx │ │ │ │ │ ├── hero-section.tsx │ │ │ │ │ └── products-week-section.tsx │ │ │ ├── layout.tsx │ │ │ ├── not-found.tsx │ │ │ ├── pages │ │ │ │ └── [slug] │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ ├── product │ │ │ │ └── [slug] │ │ │ │ │ ├── draft │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── loading.tsx │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── opengraph-image.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── reviews │ │ │ │ └── [slug] │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ └── search │ │ │ │ ├── opengraph-image.tsx │ │ │ │ └── page.tsx │ │ ├── .well-known │ │ │ └── vercel │ │ │ │ └── flags │ │ │ │ └── route.ts │ │ ├── actions │ │ │ ├── cart.actions.ts │ │ │ ├── favorites.actions.ts │ │ │ ├── product.actions.ts │ │ │ └── reviews.actions.ts │ │ ├── api │ │ │ ├── feed │ │ │ │ └── sync │ │ │ │ │ └── route.ts │ │ │ ├── health │ │ │ │ └── route.ts │ │ │ ├── redirects │ │ │ │ └── route.ts │ │ │ ├── reviews │ │ │ │ ├── ai-summary │ │ │ │ │ └── route.ts │ │ │ │ └── sync │ │ │ │ │ └── route.ts │ │ │ ├── search │ │ │ │ └── route.ts │ │ │ ├── speech │ │ │ │ └── token │ │ │ │ │ └── route.ts │ │ │ └── suggestions │ │ │ │ └── route.ts │ │ ├── globals.css │ │ ├── icon.png │ │ ├── manifest.ts │ │ ├── opengraph-image.jpg │ │ ├── robots.txt │ │ ├── sitemap.ts │ │ └── styles │ │ │ ├── megamenu.css │ │ │ └── reset.css │ ├── components.json │ ├── components │ │ ├── back-button.tsx │ │ ├── breadcrumbs.tsx │ │ ├── cart │ │ │ ├── cart-item.tsx │ │ │ ├── cart-sheet.tsx │ │ │ ├── cart-view.tsx │ │ │ ├── change-quantity-button.tsx │ │ │ └── delete-button.tsx │ │ ├── category-card.tsx │ │ ├── category │ │ │ ├── category-view.tsx │ │ │ └── page-skeleton.tsx │ │ ├── compact-product-card.tsx │ │ ├── demo-mode-alert.tsx │ │ ├── draft-toolbar.tsx │ │ ├── expandable-content.tsx │ │ ├── fade-out-mask.tsx │ │ ├── featured-product-card.tsx │ │ ├── filters │ │ │ ├── active-filters.tsx │ │ │ ├── category-facet.tsx │ │ │ ├── controls.tsx │ │ │ ├── facet.tsx │ │ │ ├── facets-content.tsx │ │ │ ├── facets-desktop.tsx │ │ │ ├── facets-mobile.tsx │ │ │ ├── hide-filters.tsx │ │ │ ├── hits-section.tsx │ │ │ ├── pagination-section.tsx │ │ │ ├── price-facet.tsx │ │ │ ├── rating-facet.tsx │ │ │ ├── search-facet.tsx │ │ │ └── sorter.tsx │ │ ├── flag-values.tsx │ │ ├── footer.tsx │ │ ├── generic-modal.tsx │ │ ├── github-badge.tsx │ │ ├── icons │ │ │ ├── arrow-icon.tsx │ │ │ ├── bag-icon.tsx │ │ │ ├── caret-sort-icon.tsx │ │ │ ├── check-icon.tsx │ │ │ ├── chevron-icon.tsx │ │ │ ├── close-icon.tsx │ │ │ ├── favorites-icon.tsx │ │ │ ├── filters-icon.tsx │ │ │ ├── heart-icon.tsx │ │ │ ├── plus-icon.tsx │ │ │ ├── robot-icon.tsx │ │ │ ├── search-icon.tsx │ │ │ ├── star-icon.tsx │ │ │ ├── stop-icon.tsx │ │ │ └── thin-search-icon.tsx │ │ ├── loading-dots.tsx │ │ ├── logo.tsx │ │ ├── modals │ │ │ ├── modals.tsx │ │ │ ├── review-modal.tsx │ │ │ └── search-modal.tsx │ │ ├── navigation-bar │ │ │ ├── autocomplete.tsx │ │ │ ├── cart.tsx │ │ │ ├── favorites.tsx │ │ │ ├── mobile-inline-script.ts │ │ │ ├── navigation-bar.tsx │ │ │ ├── navigation-item.tsx │ │ │ ├── open-cart-button.tsx │ │ │ ├── search-button.tsx │ │ │ ├── types.ts │ │ │ └── variants │ │ │ │ ├── image-grid.tsx │ │ │ │ ├── text-grid.tsx │ │ │ │ └── text-image-grid.tsx │ │ ├── product-card.tsx │ │ ├── product │ │ │ ├── add-to-cart-button.tsx │ │ │ ├── center-image-section.tsx │ │ │ ├── faq-section.tsx │ │ │ ├── favorite-marker.tsx │ │ │ ├── page-skeleton.tsx │ │ │ ├── product-added-alert.tsx │ │ │ ├── product-images.tsx │ │ │ ├── product-title.tsx │ │ │ ├── review-button.tsx │ │ │ ├── review-card.tsx │ │ │ ├── reviews-section.tsx │ │ │ ├── right-section.tsx │ │ │ ├── side-images.tsx │ │ │ ├── similar-product-section-skeleton.tsx │ │ │ ├── similar-products-section.tsx │ │ │ ├── variant.tsx │ │ │ └── variants-section.tsx │ │ ├── search-view.tsx │ │ ├── spinner.tsx │ │ ├── star-rating.tsx │ │ ├── third-parties.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── audio-visualizer.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button-old.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chat-message.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── copy-button.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── markdown-renderer.tsx │ │ │ ├── message-list.tsx │ │ │ ├── pagination.tsx │ │ │ ├── prompt-suggestions.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── tooltip.tsx │ │ │ └── typing-indicator.tsx │ ├── constants │ │ └── index.ts │ ├── e2e │ │ └── example.spec.ts │ ├── env.mjs │ ├── infrastructure │ │ └── azure │ │ │ └── bicep │ │ │ └── speech-services.bicep │ ├── jest.config.js │ ├── jest.setup.js │ ├── lib │ │ ├── ai │ │ │ ├── chat │ │ │ │ └── index.ts │ │ │ ├── prompts.ts │ │ │ ├── tools.ts │ │ │ └── utils.ts │ │ ├── algolia │ │ │ ├── client.ts │ │ │ ├── filter-builder.test.ts │ │ │ ├── filter-builder.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── redirects │ │ │ ├── bloom-filter.json │ │ │ ├── generate-bloom-filter.ts │ │ │ ├── new-redirects.json │ │ │ └── redirects.json │ │ ├── replicate │ │ │ └── index.ts │ │ ├── reviews │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── shopify │ │ │ ├── client.ts │ │ │ ├── fragments │ │ │ ├── cart.ts │ │ │ ├── collection.ts │ │ │ ├── customer.ts │ │ │ ├── image.ts │ │ │ ├── menu.ts │ │ │ ├── page.ts │ │ │ ├── product.ts │ │ │ └── seo.ts │ │ │ ├── index.ts │ │ │ ├── mutations │ │ │ ├── cart.storefront.ts │ │ │ ├── customer.storefront.ts │ │ │ ├── product-feed.admin.ts │ │ │ └── webhook.admin.ts │ │ │ ├── normalize.ts │ │ │ ├── queries │ │ │ ├── cart.storefront.ts │ │ │ ├── collection.storefront.ts │ │ │ ├── customer.storefront.ts │ │ │ ├── menu.storefront.ts │ │ │ ├── page.storefront.ts │ │ │ ├── product-feed.admin.ts │ │ │ ├── product.admin.ts │ │ │ └── product.storefront.ts │ │ │ ├── types │ │ │ ├── admin │ │ │ │ ├── admin-2024-01.schema.json │ │ │ │ ├── admin.generated.d.ts │ │ │ │ └── admin.types.d.ts │ │ │ ├── index.ts │ │ │ ├── storefront-2024-01.schema.json │ │ │ ├── storefront.generated.d.ts │ │ │ └── storefront.types.d.ts │ │ │ └── utils.ts │ ├── middleware.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.js │ ├── prettier.config.js │ ├── public │ │ ├── category-placeholder-3.png │ │ ├── category-placeholder-4.png │ │ ├── category-placeholder-5.png │ │ ├── category-placeholder-6.png │ │ ├── default-product-image.svg │ │ ├── demo-categories-data.json │ │ ├── demo-data.json │ │ ├── demo-product-reviews-data.json │ │ ├── fonts │ │ │ ├── Inter-Black.ttf │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-ExtraBold.ttf │ │ │ ├── Inter-ExtraLight.ttf │ │ │ ├── Inter-Light.ttf │ │ │ ├── Inter-Medium.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-SemiBold.ttf │ │ │ └── Inter-Thin.ttf │ │ ├── hero.png │ │ └── menu │ │ │ ├── beauty-1.png │ │ │ ├── beauty-2.png │ │ │ ├── beauty-3.png │ │ │ ├── beauty-4.png │ │ │ ├── beauty-5.png │ │ │ ├── electronics-1.png │ │ │ ├── electronics-2.png │ │ │ ├── electronics-3.png │ │ │ ├── electronics-4.png │ │ │ ├── furniture-1.png │ │ │ ├── furniture-2.png │ │ │ ├── furniture-3.png │ │ │ └── furniture-4.png │ ├── report-bundle-size.js │ ├── reset.d.ts │ ├── scripts │ │ └── sync.ts │ ├── shopify-webhooks.d.ts │ ├── stores │ │ ├── add-product-store.ts │ │ ├── app-context-store.ts │ │ ├── cart-store.ts │ │ ├── filter-transition-store.ts │ │ ├── filters-store.ts │ │ ├── modal-store.ts │ │ └── tool-invocation-store.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ ├── types │ │ └── index.ts │ ├── utils │ │ ├── __tests__ │ │ │ └── build-search-filter.test.ts │ │ ├── ab-testing.ts │ │ ├── authenticate-api-route.ts │ │ ├── build-search-filter.ts │ │ ├── cn.ts │ │ ├── compare-hmac.ts │ │ ├── demo-utils.ts │ │ ├── enrich-product.ts │ │ ├── generate-uuid.ts │ │ ├── get-cookie.ts │ │ ├── get-vercel-flag-overrides.ts │ │ ├── highlighted-text.tsx │ │ ├── make-keywords.ts │ │ ├── map-currency-to-sign.ts │ │ ├── nav-items.ts │ │ ├── opt-in.ts │ │ ├── product-options-utils.ts │ │ ├── slug-name.ts │ │ ├── use-autocomplete.ts │ │ ├── use-copy-to-clipboard.ts │ │ ├── use-hierarchical-menu.ts │ │ ├── use-mobile.ts │ │ └── use-read-more.ts │ ├── vercel.json │ └── yarn.lock └── shopify-meilisearch │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlrc.ts │ ├── .prettierignore │ ├── README.md │ ├── app │ ├── .well-known │ │ └── vercel │ │ │ └── flags │ │ │ └── route.ts │ ├── actions │ │ ├── cart.actions.ts │ │ ├── favorites.actions.ts │ │ ├── product.actions.ts │ │ └── reviews.actions.ts │ ├── api │ │ ├── feed │ │ │ └── sync │ │ │ │ └── route.ts │ │ ├── health │ │ │ └── route.ts │ │ ├── redirects │ │ │ └── route.ts │ │ └── reviews │ │ │ ├── ai-summary │ │ │ └── route.ts │ │ │ └── sync │ │ │ └── route.ts │ ├── category │ │ ├── _components │ │ │ ├── category-view.tsx │ │ │ └── page-skeleton.tsx │ │ ├── clp │ │ │ └── [slug] │ │ │ │ ├── [page] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ └── plp │ │ │ └── [slug] │ │ │ └── page.tsx │ ├── error.tsx │ ├── favorites │ │ └── page.tsx │ ├── global-error.tsx │ ├── globals.css │ ├── home │ │ ├── [bucket] │ │ │ └── page.tsx │ │ └── _components │ │ │ ├── announcement-bar.tsx │ │ │ ├── carousel-section.tsx │ │ │ ├── categories-section.tsx │ │ │ ├── featured-products-section.tsx │ │ │ ├── hero-section.tsx │ │ │ └── products-week-section.tsx │ ├── icon.png │ ├── layout.tsx │ ├── manifest.ts │ ├── not-found.tsx │ ├── opengraph-image.jpg │ ├── pages │ │ └── [slug] │ │ │ ├── metadata.ts │ │ │ └── page.tsx │ ├── product │ │ ├── [slug] │ │ │ ├── draft │ │ │ │ └── page.tsx │ │ │ ├── loading.tsx │ │ │ ├── metadata.ts │ │ │ ├── opengraph-image.tsx │ │ │ └── page.tsx │ │ └── _components │ │ │ ├── add-to-cart-button.tsx │ │ │ ├── center-image-section.tsx │ │ │ ├── faq-section.tsx │ │ │ ├── favorite-marker.tsx │ │ │ ├── page-skeleton.tsx │ │ │ ├── product-added-alert.tsx │ │ │ ├── product-images.tsx │ │ │ ├── product-title.tsx │ │ │ ├── review-button.tsx │ │ │ ├── review-card.tsx │ │ │ ├── reviews-section.tsx │ │ │ ├── right-section.tsx │ │ │ ├── side-images.tsx │ │ │ ├── similar-product-section-skeleton.tsx │ │ │ ├── similar-products-section.tsx │ │ │ ├── variant.tsx │ │ │ └── variants-section.tsx │ ├── reviews │ │ └── [slug] │ │ │ ├── metadata.ts │ │ │ └── page.tsx │ ├── robots.txt │ ├── search │ │ ├── opengraph-image.tsx │ │ └── page.tsx │ ├── sitemap.ts │ └── styles │ │ ├── megamenu.css │ │ └── reset.css │ ├── components.json │ ├── components │ ├── back-button.tsx │ ├── breadcrumbs.tsx │ ├── cart │ │ ├── cart-item.tsx │ │ ├── cart-sheet.tsx │ │ ├── cart-view.tsx │ │ ├── change-quantity-button.tsx │ │ └── delete-button.tsx │ ├── category-card.tsx │ ├── compact-product-card.tsx │ ├── demo-mode-alert.tsx │ ├── draft-toolbar.tsx │ ├── expandable-content.tsx │ ├── featured-product-card.tsx │ ├── filters │ │ ├── category-facet.tsx │ │ ├── controls.tsx │ │ ├── facet.tsx │ │ ├── facets-content.tsx │ │ ├── facets-desktop.tsx │ │ ├── facets-mobile.tsx │ │ ├── hide-filters.tsx │ │ ├── hits-section.tsx │ │ ├── pagination-section.tsx │ │ ├── price-facet.tsx │ │ ├── rating-facet.tsx │ │ ├── search-facet.tsx │ │ └── sorter.tsx │ ├── flag-values.tsx │ ├── footer.tsx │ ├── generic-modal.tsx │ ├── github-badge.tsx │ ├── icons │ │ ├── arrow-icon.tsx │ │ ├── bag-icon.tsx │ │ ├── caret-sort-icon.tsx │ │ ├── check-icon.tsx │ │ ├── chevron-icon.tsx │ │ ├── close-icon.tsx │ │ ├── favorites-icon.tsx │ │ ├── filters-icon.tsx │ │ ├── heart-icon.tsx │ │ ├── robot-icon.tsx │ │ ├── search-icon.tsx │ │ ├── star-icon.tsx │ │ └── thin-search-icon.tsx │ ├── loading-dots.tsx │ ├── logo.tsx │ ├── modals │ │ ├── modals.tsx │ │ ├── review-modal.tsx │ │ └── search-modal.tsx │ ├── navigation-bar │ │ ├── autocomplete.tsx │ │ ├── cart.tsx │ │ ├── favorites.tsx │ │ ├── mobile-inline-script.ts │ │ ├── navigation-bar.tsx │ │ ├── navigation-item.tsx │ │ ├── open-cart-button.tsx │ │ ├── search-button.tsx │ │ ├── types.ts │ │ └── variants │ │ │ ├── image-grid.tsx │ │ │ ├── text-grid.tsx │ │ │ └── text-image-grid.tsx │ ├── product-card.tsx │ ├── search-view.tsx │ ├── spinner.tsx │ ├── star-rating.tsx │ ├── third-parties.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button-old.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── pagination.tsx │ │ ├── select.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ └── textarea.tsx │ ├── constants │ └── index.ts │ ├── e2e │ └── example.spec.ts │ ├── env.mjs │ ├── jest.config.js │ ├── jest.setup.js │ ├── lib │ ├── meilisearch │ │ ├── client.ts │ │ ├── filter-builder.test.ts │ │ ├── filter-builder.ts │ │ └── index.ts │ ├── redirects │ │ ├── bloom-filter.json │ │ ├── generate-bloom-filter.ts │ │ ├── new-redirects.json │ │ └── redirects.json │ ├── replicate │ │ └── index.ts │ ├── reviews │ │ ├── client.ts │ │ ├── index.ts │ │ └── types.ts │ └── shopify │ │ ├── client.ts │ │ ├── fragments │ │ ├── cart.ts │ │ ├── collection.ts │ │ ├── customer.ts │ │ ├── image.ts │ │ ├── menu.ts │ │ ├── page.ts │ │ ├── product.ts │ │ └── seo.ts │ │ ├── index.ts │ │ ├── mutations │ │ ├── cart.storefront.ts │ │ ├── customer.storefront.ts │ │ ├── product-feed.admin.ts │ │ └── webhook.admin.ts │ │ ├── normalize.ts │ │ ├── queries │ │ ├── cart.storefront.ts │ │ ├── collection.storefront.ts │ │ ├── customer.storefront.ts │ │ ├── menu.storefront.ts │ │ ├── page.storefront.ts │ │ ├── product-feed.admin.ts │ │ ├── product.admin.ts │ │ └── product.storefront.ts │ │ ├── types │ │ ├── admin │ │ │ ├── admin-2024-01.schema.json │ │ │ ├── admin.generated.d.ts │ │ │ └── admin.types.d.ts │ │ ├── index.ts │ │ ├── storefront-2024-01.schema.json │ │ ├── storefront.generated.d.ts │ │ └── storefront.types.d.ts │ │ └── utils.ts │ ├── middleware.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.js │ ├── prettier.config.js │ ├── public │ ├── category-placeholder-3.png │ ├── category-placeholder-4.png │ ├── category-placeholder-5.png │ ├── category-placeholder-6.png │ ├── default-product-image.svg │ ├── demo-categories-data.json │ ├── demo-data.json │ ├── demo-product-reviews-data.json │ ├── fonts │ │ ├── Inter-Black.ttf │ │ ├── Inter-Bold.ttf │ │ ├── Inter-ExtraBold.ttf │ │ ├── Inter-ExtraLight.ttf │ │ ├── Inter-Light.ttf │ │ ├── Inter-Medium.ttf │ │ ├── Inter-Regular.ttf │ │ ├── Inter-SemiBold.ttf │ │ └── Inter-Thin.ttf │ ├── hero.png │ └── menu │ │ ├── beauty-1.png │ │ ├── beauty-2.png │ │ ├── beauty-3.png │ │ ├── beauty-4.png │ │ ├── beauty-5.png │ │ ├── electronics-1.png │ │ ├── electronics-2.png │ │ ├── electronics-3.png │ │ ├── electronics-4.png │ │ ├── furniture-1.png │ │ ├── furniture-2.png │ │ ├── furniture-3.png │ │ └── furniture-4.png │ ├── report-bundle-size.js │ ├── reset.d.ts │ ├── scripts │ └── sync.ts │ ├── shopify-webhooks.d.ts │ ├── stores │ ├── add-product-store.ts │ ├── cart-store.ts │ ├── filter-transition-store.ts │ ├── filters-store.ts │ ├── modal-store.ts │ └── user-store.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ ├── types │ └── index.ts │ ├── utils │ ├── __tests__ │ │ └── compose-filters.test.ts │ ├── ab-testing.ts │ ├── authenticate-api-route.ts │ ├── cn.ts │ ├── compare-hmac.ts │ ├── compose-filters.ts │ ├── demo-utils.ts │ ├── enrich-product.ts │ ├── get-cookie.ts │ ├── get-vercel-flag-overrides.ts │ ├── highlighted-text.tsx │ ├── make-keywords.ts │ ├── map-currency-to-sign.ts │ ├── opt-in.ts │ ├── product-options-utils.ts │ ├── slug-name.ts │ ├── use-autocomplete.ts │ ├── use-hierarchical-menu.ts │ └── use-read-more.ts │ ├── vercel.json │ └── yarn.lock └── yarn.lock /.github/nodejs.version: -------------------------------------------------------------------------------- 1 | v20.11.1 -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.github/workflows/nextjs_bundle_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.github/workflows/nextjs_bundle_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run commitlint ${1} 5 | -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.releaserc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] } 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/renovate.json -------------------------------------------------------------------------------- /starters/shopify-algolia/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/.eslintignore -------------------------------------------------------------------------------- /starters/shopify-algolia/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/.eslintrc.js -------------------------------------------------------------------------------- /starters/shopify-algolia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/.gitignore -------------------------------------------------------------------------------- /starters/shopify-algolia/.graphqlrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/.graphqlrc.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | gql -------------------------------------------------------------------------------- /starters/shopify-algolia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/README.md -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/ai-commerce-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/ai-commerce-provider.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/chat-input.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/chat-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/chat-sidebar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/chat-suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/chat-suggestions.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/context-reporter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/context-reporter.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/floating-chat-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/floating-chat-box.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/textbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/textbox.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/_components/use-speech-recognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/_components/use-speech-recognition.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/category/clp/[slug]/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/category/clp/[slug]/[page]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/category/clp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/category/clp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/category/plp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/category/plp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/loading.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/opengraph-image.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/product/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/ai/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/ai/search/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(ai-browse)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(ai-browse)/layout.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/category/clp/[slug]/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/category/clp/[slug]/[page]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/category/clp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/category/clp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/category/plp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/category/plp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/error.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/favorites/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/favorites/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/global-error.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/[bucket]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/[bucket]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/announcement-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/announcement-bar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/carousel-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/carousel-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/categories-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/categories-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/featured-products-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/featured-products-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/hero-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/home/_components/products-week-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/home/_components/products-week-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/layout.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/not-found.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/pages/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/pages/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/pages/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/pages/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/product/[slug]/draft/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/product/[slug]/draft/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/product/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/product/[slug]/loading.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/product/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/product/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/product/[slug]/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/product/[slug]/opengraph-image.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/product/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/product/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/reviews/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/reviews/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/reviews/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/reviews/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/search/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/search/opengraph-image.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/(browse)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/(browse)/search/page.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/app/.well-known/vercel/flags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/.well-known/vercel/flags/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/actions/cart.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/actions/cart.actions.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/actions/favorites.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/actions/favorites.actions.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/actions/product.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/actions/product.actions.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/actions/reviews.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/actions/reviews.actions.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/feed/sync/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/feed/sync/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/health/route.ts: -------------------------------------------------------------------------------- 1 | export async function GET() { 2 | return Response.json({ status: "ok" }) 3 | } 4 | -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/redirects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/redirects/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/reviews/ai-summary/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/reviews/ai-summary/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/reviews/sync/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/reviews/sync/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/search/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/speech/token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/speech/token/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/api/suggestions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/api/suggestions/route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/globals.css -------------------------------------------------------------------------------- /starters/shopify-algolia/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/icon.png -------------------------------------------------------------------------------- /starters/shopify-algolia/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/manifest.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/opengraph-image.jpg -------------------------------------------------------------------------------- /starters/shopify-algolia/app/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/robots.txt -------------------------------------------------------------------------------- /starters/shopify-algolia/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/sitemap.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/app/styles/megamenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/styles/megamenu.css -------------------------------------------------------------------------------- /starters/shopify-algolia/app/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/app/styles/reset.css -------------------------------------------------------------------------------- /starters/shopify-algolia/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components.json -------------------------------------------------------------------------------- /starters/shopify-algolia/components/back-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/back-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/cart/cart-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/cart/cart-item.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/cart/cart-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/cart/cart-sheet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/cart/cart-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/cart/cart-view.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/cart/change-quantity-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/cart/change-quantity-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/cart/delete-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/cart/delete-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/category-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/category-card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/category/category-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/category/category-view.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/category/page-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/category/page-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/compact-product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/compact-product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/demo-mode-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/demo-mode-alert.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/draft-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/draft-toolbar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/expandable-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/expandable-content.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/fade-out-mask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/fade-out-mask.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/featured-product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/featured-product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/active-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/active-filters.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/category-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/category-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/controls.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/facet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/facets-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/facets-content.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/facets-desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/facets-desktop.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/facets-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/facets-mobile.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/hide-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/hide-filters.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/hits-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/hits-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/pagination-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/pagination-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/price-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/price-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/rating-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/rating-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/search-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/search-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/filters/sorter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/filters/sorter.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/flag-values.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/flag-values.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/footer.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/generic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/generic-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/github-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/github-badge.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/arrow-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/arrow-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/bag-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/bag-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/caret-sort-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/caret-sort-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/check-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/check-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/chevron-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/chevron-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/close-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/close-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/favorites-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/favorites-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/filters-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/filters-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/heart-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/heart-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/plus-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/plus-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/robot-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/robot-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/search-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/star-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/star-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/stop-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/stop-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/icons/thin-search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/icons/thin-search-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/loading-dots.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/logo.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/modals/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/modals/modals.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/modals/review-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/modals/review-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/modals/search-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/modals/search-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/autocomplete.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/cart.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/favorites.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/mobile-inline-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/mobile-inline-script.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/navigation-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/navigation-bar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/navigation-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/navigation-item.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/open-cart-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/open-cart-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/search-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/search-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/types.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/variants/image-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/variants/image-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/variants/text-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/variants/text-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/navigation-bar/variants/text-image-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/navigation-bar/variants/text-image-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/add-to-cart-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/add-to-cart-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/center-image-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/center-image-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/faq-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/faq-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/favorite-marker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/favorite-marker.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/page-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/page-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/product-added-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/product-added-alert.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/product-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/product-images.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/product-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/product-title.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/review-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/review-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/review-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/review-card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/reviews-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/reviews-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/right-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/right-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/side-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/side-images.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/similar-product-section-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/similar-product-section-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/similar-products-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/similar-products-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/variant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/variant.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/product/variants-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/product/variants-section.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/search-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/search-view.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/spinner.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/star-rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/star-rating.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/third-parties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/third-parties.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/accordion.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/alert.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/audio-visualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/audio-visualizer.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/avatar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/badge.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/button-old.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/button-old.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/card.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/carousel.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/chat-message.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/copy-button.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/dialog.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/form.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/input.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/label.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/markdown-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/markdown-renderer.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/message-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/message-list.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/pagination.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/prompt-suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/prompt-suggestions.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/select.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/separator.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/sheet.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/textarea.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/components/ui/typing-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/components/ui/typing-indicator.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/constants/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/e2e/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/e2e/example.spec.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/env.mjs -------------------------------------------------------------------------------- /starters/shopify-algolia/infrastructure/azure/bicep/speech-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/infrastructure/azure/bicep/speech-services.bicep -------------------------------------------------------------------------------- /starters/shopify-algolia/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/jest.config.js -------------------------------------------------------------------------------- /starters/shopify-algolia/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/jest.setup.js -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/ai/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/ai/chat/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/ai/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/ai/prompts.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/ai/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/ai/tools.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/ai/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/ai/utils.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/algolia/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/algolia/client.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/algolia/filter-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/algolia/filter-builder.test.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/algolia/filter-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/algolia/filter-builder.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/algolia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/algolia/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/algolia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/algolia/utils.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/redirects/bloom-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/redirects/bloom-filter.json -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/redirects/generate-bloom-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/redirects/generate-bloom-filter.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/redirects/new-redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/redirects/new-redirects.json -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/redirects/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/redirects/redirects.json -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/replicate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/replicate/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/reviews/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/reviews/client.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/reviews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/reviews/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/reviews/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/reviews/types.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/client.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/cart.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/collection.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/customer.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/image.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/menu.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/page.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/product.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/fragments/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/fragments/seo.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/mutations/cart.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/mutations/cart.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/mutations/customer.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/mutations/customer.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/mutations/product-feed.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/mutations/product-feed.admin.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/mutations/webhook.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/mutations/webhook.admin.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/normalize.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/cart.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/cart.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/collection.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/collection.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/customer.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/customer.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/menu.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/menu.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/page.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/page.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/product-feed.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/product-feed.admin.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/product.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/product.admin.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/queries/product.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/queries/product.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/admin/admin-2024-01.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/admin/admin-2024-01.schema.json -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/admin/admin.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/admin/admin.generated.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/admin/admin.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/admin/admin.types.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/storefront-2024-01.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/storefront-2024-01.schema.json -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/storefront.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/storefront.generated.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/types/storefront.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/types/storefront.types.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/lib/shopify/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/lib/shopify/utils.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/middleware.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/next-env.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/next.config.mjs -------------------------------------------------------------------------------- /starters/shopify-algolia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/package.json -------------------------------------------------------------------------------- /starters/shopify-algolia/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/playwright.config.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/postcss.config.js -------------------------------------------------------------------------------- /starters/shopify-algolia/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/prettier.config.js -------------------------------------------------------------------------------- /starters/shopify-algolia/public/category-placeholder-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/category-placeholder-3.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/category-placeholder-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/category-placeholder-4.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/category-placeholder-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/category-placeholder-5.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/category-placeholder-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/category-placeholder-6.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/default-product-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/default-product-image.svg -------------------------------------------------------------------------------- /starters/shopify-algolia/public/demo-categories-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/demo-categories-data.json -------------------------------------------------------------------------------- /starters/shopify-algolia/public/demo-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/demo-data.json -------------------------------------------------------------------------------- /starters/shopify-algolia/public/demo-product-reviews-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/demo-product-reviews-data.json -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Black.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Light.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/fonts/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/fonts/Inter-Thin.ttf -------------------------------------------------------------------------------- /starters/shopify-algolia/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/hero.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/beauty-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/beauty-1.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/beauty-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/beauty-2.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/beauty-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/beauty-3.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/beauty-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/beauty-4.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/beauty-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/beauty-5.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/electronics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/electronics-1.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/electronics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/electronics-2.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/electronics-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/electronics-3.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/electronics-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/electronics-4.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/furniture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/furniture-1.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/furniture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/furniture-2.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/furniture-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/furniture-3.png -------------------------------------------------------------------------------- /starters/shopify-algolia/public/menu/furniture-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/public/menu/furniture-4.png -------------------------------------------------------------------------------- /starters/shopify-algolia/report-bundle-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/report-bundle-size.js -------------------------------------------------------------------------------- /starters/shopify-algolia/reset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/reset.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/scripts/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/scripts/sync.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/shopify-webhooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/shopify-webhooks.d.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/add-product-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/add-product-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/app-context-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/app-context-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/cart-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/cart-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/filter-transition-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/filter-transition-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/filters-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/filters-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/modal-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/modal-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/stores/tool-invocation-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/stores/tool-invocation-store.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/tailwind.config.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/tsconfig.json -------------------------------------------------------------------------------- /starters/shopify-algolia/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/tsup.config.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/types/index.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/__tests__/build-search-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/__tests__/build-search-filter.test.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/ab-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/ab-testing.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/authenticate-api-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/authenticate-api-route.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/build-search-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/build-search-filter.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/cn.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/compare-hmac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/compare-hmac.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/demo-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/demo-utils.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/enrich-product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/enrich-product.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/generate-uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/generate-uuid.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/get-cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/get-cookie.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/get-vercel-flag-overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/get-vercel-flag-overrides.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/highlighted-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/highlighted-text.tsx -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/make-keywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/make-keywords.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/map-currency-to-sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/map-currency-to-sign.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/nav-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/nav-items.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/opt-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/opt-in.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/product-options-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/product-options-utils.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/slug-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/slug-name.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/use-autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/use-autocomplete.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/use-hierarchical-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/use-hierarchical-menu.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/use-mobile.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/utils/use-read-more.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/utils/use-read-more.ts -------------------------------------------------------------------------------- /starters/shopify-algolia/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/vercel.json -------------------------------------------------------------------------------- /starters/shopify-algolia/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-algolia/yarn.lock -------------------------------------------------------------------------------- /starters/shopify-meilisearch/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/.eslintignore -------------------------------------------------------------------------------- /starters/shopify-meilisearch/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/.eslintrc.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/.gitignore -------------------------------------------------------------------------------- /starters/shopify-meilisearch/.graphqlrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/.graphqlrc.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | gql -------------------------------------------------------------------------------- /starters/shopify-meilisearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/README.md -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/.well-known/vercel/flags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/.well-known/vercel/flags/route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/actions/cart.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/actions/cart.actions.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/actions/favorites.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/actions/favorites.actions.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/actions/product.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/actions/product.actions.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/actions/reviews.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/actions/reviews.actions.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/api/feed/sync/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/api/feed/sync/route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/api/health/route.ts: -------------------------------------------------------------------------------- 1 | export async function GET() { 2 | return Response.json({ status: "ok" }) 3 | } 4 | -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/api/redirects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/api/redirects/route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/api/reviews/ai-summary/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/api/reviews/ai-summary/route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/api/reviews/sync/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/api/reviews/sync/route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/category/_components/category-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/category/_components/category-view.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/category/_components/page-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/category/_components/page-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/category/clp/[slug]/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/category/clp/[slug]/[page]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/category/clp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/category/clp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/category/plp/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/category/plp/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/error.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/favorites/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/favorites/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/global-error.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/globals.css -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/[bucket]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/[bucket]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/announcement-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/announcement-bar.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/carousel-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/carousel-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/categories-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/categories-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/featured-products-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/featured-products-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/hero-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/home/_components/products-week-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/home/_components/products-week-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/icon.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/layout.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/manifest.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/not-found.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/opengraph-image.jpg -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/pages/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/pages/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/pages/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/pages/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/[slug]/draft/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/[slug]/draft/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/[slug]/loading.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/[slug]/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/[slug]/opengraph-image.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/add-to-cart-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/add-to-cart-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/center-image-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/center-image-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/faq-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/faq-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/favorite-marker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/favorite-marker.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/page-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/page-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/product-added-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/product-added-alert.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/product-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/product-images.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/product-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/product-title.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/review-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/review-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/review-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/review-card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/reviews-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/reviews-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/right-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/right-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/side-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/side-images.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/similar-product-section-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/similar-product-section-skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/similar-products-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/similar-products-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/variant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/variant.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/product/_components/variants-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/product/_components/variants-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/reviews/[slug]/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/reviews/[slug]/metadata.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/reviews/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/reviews/[slug]/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/robots.txt -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/search/opengraph-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/search/opengraph-image.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/search/page.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/sitemap.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/styles/megamenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/styles/megamenu.css -------------------------------------------------------------------------------- /starters/shopify-meilisearch/app/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/app/styles/reset.css -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/back-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/back-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/cart/cart-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/cart/cart-item.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/cart/cart-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/cart/cart-sheet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/cart/cart-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/cart/cart-view.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/cart/change-quantity-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/cart/change-quantity-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/cart/delete-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/cart/delete-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/category-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/category-card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/compact-product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/compact-product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/demo-mode-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/demo-mode-alert.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/draft-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/draft-toolbar.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/expandable-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/expandable-content.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/featured-product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/featured-product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/category-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/category-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/controls.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/facet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/facets-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/facets-content.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/facets-desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/facets-desktop.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/facets-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/facets-mobile.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/hide-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/hide-filters.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/hits-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/hits-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/pagination-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/pagination-section.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/price-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/price-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/rating-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/rating-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/search-facet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/search-facet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/filters/sorter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/filters/sorter.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/flag-values.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/flag-values.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/footer.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/generic-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/generic-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/github-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/github-badge.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/arrow-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/arrow-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/bag-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/bag-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/caret-sort-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/caret-sort-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/check-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/check-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/chevron-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/chevron-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/close-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/close-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/favorites-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/favorites-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/filters-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/filters-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/heart-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/heart-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/robot-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/robot-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/search-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/star-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/star-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/icons/thin-search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/icons/thin-search-icon.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/loading-dots.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/logo.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/modals/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/modals/modals.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/modals/review-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/modals/review-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/modals/search-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/modals/search-modal.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/autocomplete.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/cart.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/favorites.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/mobile-inline-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/mobile-inline-script.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/navigation-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/navigation-bar.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/navigation-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/navigation-item.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/open-cart-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/open-cart-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/search-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/search-button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/types.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/variants/image-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/variants/image-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/variants/text-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/variants/text-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/navigation-bar/variants/text-image-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/navigation-bar/variants/text-image-grid.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/product-card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/search-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/search-view.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/spinner.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/star-rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/star-rating.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/third-parties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/third-parties.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/accordion.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/alert.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/badge.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/button-old.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/button-old.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/button.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/card.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/carousel.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/dialog.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/form.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/input.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/label.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/pagination.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/select.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/sheet.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/components/ui/textarea.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/constants/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/e2e/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/e2e/example.spec.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/env.mjs -------------------------------------------------------------------------------- /starters/shopify-meilisearch/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/jest.config.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/jest.setup.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/meilisearch/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/meilisearch/client.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/meilisearch/filter-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/meilisearch/filter-builder.test.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/meilisearch/filter-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/meilisearch/filter-builder.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/meilisearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/meilisearch/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/redirects/bloom-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/redirects/bloom-filter.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/redirects/generate-bloom-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/redirects/generate-bloom-filter.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/redirects/new-redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/redirects/new-redirects.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/redirects/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/redirects/redirects.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/replicate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/replicate/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/reviews/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/reviews/client.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/reviews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/reviews/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/reviews/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/reviews/types.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/client.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/cart.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/collection.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/customer.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/image.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/menu.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/page.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/product.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/fragments/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/fragments/seo.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/mutations/cart.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/mutations/cart.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/mutations/customer.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/mutations/customer.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/mutations/product-feed.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/mutations/product-feed.admin.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/mutations/webhook.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/mutations/webhook.admin.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/normalize.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/cart.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/cart.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/collection.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/collection.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/customer.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/customer.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/menu.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/menu.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/page.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/page.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/product-feed.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/product-feed.admin.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/product.admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/product.admin.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/queries/product.storefront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/queries/product.storefront.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/admin/admin-2024-01.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/admin/admin-2024-01.schema.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/admin/admin.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/admin/admin.generated.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/admin/admin.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/admin/admin.types.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/storefront-2024-01.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/storefront-2024-01.schema.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/storefront.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/storefront.generated.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/types/storefront.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/types/storefront.types.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/lib/shopify/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/lib/shopify/utils.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/middleware.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/next-env.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/next.config.mjs -------------------------------------------------------------------------------- /starters/shopify-meilisearch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/package.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/playwright.config.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/postcss.config.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/prettier.config.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/category-placeholder-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/category-placeholder-3.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/category-placeholder-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/category-placeholder-4.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/category-placeholder-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/category-placeholder-5.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/category-placeholder-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/category-placeholder-6.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/default-product-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/default-product-image.svg -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/demo-categories-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/demo-categories-data.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/demo-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/demo-data.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/demo-product-reviews-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/demo-product-reviews-data.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Black.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Light.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/fonts/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/fonts/Inter-Thin.ttf -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/hero.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/beauty-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/beauty-1.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/beauty-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/beauty-2.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/beauty-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/beauty-3.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/beauty-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/beauty-4.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/beauty-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/beauty-5.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/electronics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/electronics-1.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/electronics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/electronics-2.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/electronics-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/electronics-3.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/electronics-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/electronics-4.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/furniture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/furniture-1.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/furniture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/furniture-2.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/furniture-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/furniture-3.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/public/menu/furniture-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/public/menu/furniture-4.png -------------------------------------------------------------------------------- /starters/shopify-meilisearch/report-bundle-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/report-bundle-size.js -------------------------------------------------------------------------------- /starters/shopify-meilisearch/reset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/reset.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/scripts/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/scripts/sync.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/shopify-webhooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/shopify-webhooks.d.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/add-product-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/add-product-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/cart-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/cart-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/filter-transition-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/filter-transition-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/filters-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/filters-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/modal-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/modal-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/stores/user-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/stores/user-store.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/tailwind.config.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/tsconfig.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/tsup.config.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/types/index.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/__tests__/compose-filters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/__tests__/compose-filters.test.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/ab-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/ab-testing.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/authenticate-api-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/authenticate-api-route.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/cn.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/compare-hmac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/compare-hmac.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/compose-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/compose-filters.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/demo-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/demo-utils.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/enrich-product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/enrich-product.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/get-cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/get-cookie.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/get-vercel-flag-overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/get-vercel-flag-overrides.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/highlighted-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/highlighted-text.tsx -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/make-keywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/make-keywords.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/map-currency-to-sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/map-currency-to-sign.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/opt-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/opt-in.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/product-options-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/product-options-utils.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/slug-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/slug-name.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/use-autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/use-autocomplete.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/use-hierarchical-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/use-hierarchical-menu.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/utils/use-read-more.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/utils/use-read-more.ts -------------------------------------------------------------------------------- /starters/shopify-meilisearch/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/vercel.json -------------------------------------------------------------------------------- /starters/shopify-meilisearch/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/starters/shopify-meilisearch/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkMage108/enterprise-commerce/HEAD/yarn.lock --------------------------------------------------------------------------------