├── .gitignore ├── .tool-versions ├── .yarn └── releases │ └── yarn-3.2.1.cjs ├── .yarnrc ├── .yarnrc.yml ├── README.md ├── _gitignore ├── hydrogen.config.ts ├── index.html ├── package.json ├── post-install.js ├── postcss.config.js ├── public └── fonts │ ├── IBMPlexSerif-Text.woff2 │ └── IBMPlexSerif-TextItalic.woff2 ├── src ├── App.server.tsx ├── assets │ └── favicon.svg ├── components │ ├── BuilderComponent.client.tsx │ ├── CountrySelector.client.tsx │ ├── CustomFont.client.tsx │ ├── DefaultSeo.server.tsx │ ├── HeaderFallback.tsx │ ├── account │ │ ├── AccountActivateForm.client.tsx │ │ ├── AccountAddressBook.client.tsx │ │ ├── AccountAddressEdit.client.tsx │ │ ├── AccountCreateForm.client.tsx │ │ ├── AccountDeleteAddress.client.tsx │ │ ├── AccountDetails.client.tsx │ │ ├── AccountDetailsEdit.client.tsx │ │ ├── AccountLoginForm.client.tsx │ │ ├── AccountOrderHistory.client.tsx │ │ ├── AccountPasswordResetForm.client.tsx │ │ ├── AccountRecoverForm.client.tsx │ │ └── index.ts │ ├── cards │ │ ├── ArticleCard.tsx │ │ ├── CollectionCard.server.tsx │ │ ├── OrderCard.client.tsx │ │ ├── ProductCard.client.tsx │ │ ├── index.server.ts │ │ └── index.ts │ ├── cart │ │ ├── CartDetails.client.tsx │ │ ├── CartEmpty.client.tsx │ │ ├── CartLineItem.client.tsx │ │ └── index.ts │ ├── elements │ │ ├── Button.tsx │ │ ├── Grid.tsx │ │ ├── Heading.tsx │ │ ├── Icon.tsx │ │ ├── Input.tsx │ │ ├── LogoutButton.client.tsx │ │ ├── Section.tsx │ │ ├── Skeleton.tsx │ │ ├── Text.tsx │ │ └── index.ts │ ├── global │ │ ├── CartDrawer.client.tsx │ │ ├── Drawer.client.tsx │ │ ├── Footer.server.tsx │ │ ├── FooterMenu.client.tsx │ │ ├── Header.client.tsx │ │ ├── Layout.server.tsx │ │ ├── MenuDrawer.client.tsx │ │ ├── Modal.client.tsx │ │ ├── NotFound.server.tsx │ │ ├── PageHeader.tsx │ │ ├── index.server.ts │ │ └── index.ts │ ├── index.server.ts │ ├── index.ts │ ├── product │ │ ├── ProductDetail.client.tsx │ │ ├── ProductForm.client.tsx │ │ ├── ProductGallery.client.tsx │ │ ├── ProductGrid.client.tsx │ │ ├── ProductOptions.client.tsx │ │ └── index.ts │ ├── search │ │ ├── NoResultRecommendations.server.tsx │ │ ├── SearchPage.server.tsx │ │ └── index.server.ts │ └── sections │ │ ├── FeaturedCollections.tsx │ │ ├── Hero.tsx │ │ ├── ProductCards.tsx │ │ ├── ProductSwimlane.server.tsx │ │ ├── index.server.ts │ │ └── index.ts ├── lib │ ├── const.ts │ ├── fragments.ts │ ├── index.ts │ ├── placeholders.ts │ ├── styleUtils.tsx │ └── utils.ts ├── routes │ ├── account │ │ ├── activate │ │ │ ├── [id] │ │ │ │ └── [activationToken].server.tsx │ │ │ └── index.server.ts │ │ ├── address │ │ │ ├── [addressId].server.ts │ │ │ └── index.server.ts │ │ ├── index.server.tsx │ │ ├── login.server.tsx │ │ ├── logout.server.ts │ │ ├── orders │ │ │ └── [id].server.tsx │ │ ├── recover.server.tsx │ │ ├── register.server.tsx │ │ └── reset │ │ │ ├── [id] │ │ │ └── [resetToken].server.tsx │ │ │ └── index.server.ts │ ├── admin.server.tsx │ ├── api │ │ ├── bestSellers.server.ts │ │ └── countries.server.ts │ ├── builder │ │ └── [handle].server.tsx │ ├── cart.server.tsx │ ├── collections │ │ ├── [handle].server.tsx │ │ ├── all.server.tsx │ │ └── index.server.tsx │ ├── components │ │ └── BuilderComponent.client.tsx │ ├── index.server.tsx │ ├── journal │ │ ├── [handle].server.tsx │ │ └── index.server.tsx │ ├── pages │ │ └── [handle].server.tsx │ ├── policies │ │ ├── [handle].server.tsx │ │ └── index.server.tsx │ ├── products │ │ ├── [handle].server.tsx │ │ └── index.server.tsx │ ├── robots.txt.server.ts │ ├── search.server.tsx │ └── sitemap.xml.server.ts └── styles │ ├── custom-font.css │ └── index.css ├── tailwind.config.js ├── tests ├── e2e │ ├── collection.test.ts │ ├── index.test.ts │ └── product.test.ts └── utils.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.6.0 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/.yarnrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/README.md -------------------------------------------------------------------------------- /_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/_gitignore -------------------------------------------------------------------------------- /hydrogen.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/hydrogen.config.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/package.json -------------------------------------------------------------------------------- /post-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/post-install.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/fonts/IBMPlexSerif-Text.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/public/fonts/IBMPlexSerif-Text.woff2 -------------------------------------------------------------------------------- /public/fonts/IBMPlexSerif-TextItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/public/fonts/IBMPlexSerif-TextItalic.woff2 -------------------------------------------------------------------------------- /src/App.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/App.server.tsx -------------------------------------------------------------------------------- /src/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/assets/favicon.svg -------------------------------------------------------------------------------- /src/components/BuilderComponent.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/BuilderComponent.client.tsx -------------------------------------------------------------------------------- /src/components/CountrySelector.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/CountrySelector.client.tsx -------------------------------------------------------------------------------- /src/components/CustomFont.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/CustomFont.client.tsx -------------------------------------------------------------------------------- /src/components/DefaultSeo.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/DefaultSeo.server.tsx -------------------------------------------------------------------------------- /src/components/HeaderFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/HeaderFallback.tsx -------------------------------------------------------------------------------- /src/components/account/AccountActivateForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountActivateForm.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountAddressBook.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountAddressBook.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountAddressEdit.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountAddressEdit.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountCreateForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountCreateForm.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountDeleteAddress.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountDeleteAddress.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountDetails.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountDetails.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountDetailsEdit.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountDetailsEdit.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountLoginForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountLoginForm.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountOrderHistory.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountOrderHistory.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountPasswordResetForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountPasswordResetForm.client.tsx -------------------------------------------------------------------------------- /src/components/account/AccountRecoverForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/AccountRecoverForm.client.tsx -------------------------------------------------------------------------------- /src/components/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/account/index.ts -------------------------------------------------------------------------------- /src/components/cards/ArticleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/ArticleCard.tsx -------------------------------------------------------------------------------- /src/components/cards/CollectionCard.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/CollectionCard.server.tsx -------------------------------------------------------------------------------- /src/components/cards/OrderCard.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/OrderCard.client.tsx -------------------------------------------------------------------------------- /src/components/cards/ProductCard.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/ProductCard.client.tsx -------------------------------------------------------------------------------- /src/components/cards/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/index.server.ts -------------------------------------------------------------------------------- /src/components/cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cards/index.ts -------------------------------------------------------------------------------- /src/components/cart/CartDetails.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cart/CartDetails.client.tsx -------------------------------------------------------------------------------- /src/components/cart/CartEmpty.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cart/CartEmpty.client.tsx -------------------------------------------------------------------------------- /src/components/cart/CartLineItem.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cart/CartLineItem.client.tsx -------------------------------------------------------------------------------- /src/components/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/cart/index.ts -------------------------------------------------------------------------------- /src/components/elements/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Button.tsx -------------------------------------------------------------------------------- /src/components/elements/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Grid.tsx -------------------------------------------------------------------------------- /src/components/elements/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Heading.tsx -------------------------------------------------------------------------------- /src/components/elements/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Icon.tsx -------------------------------------------------------------------------------- /src/components/elements/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Input.tsx -------------------------------------------------------------------------------- /src/components/elements/LogoutButton.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/LogoutButton.client.tsx -------------------------------------------------------------------------------- /src/components/elements/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Section.tsx -------------------------------------------------------------------------------- /src/components/elements/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/elements/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/Text.tsx -------------------------------------------------------------------------------- /src/components/elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/elements/index.ts -------------------------------------------------------------------------------- /src/components/global/CartDrawer.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/CartDrawer.client.tsx -------------------------------------------------------------------------------- /src/components/global/Drawer.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/Drawer.client.tsx -------------------------------------------------------------------------------- /src/components/global/Footer.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/Footer.server.tsx -------------------------------------------------------------------------------- /src/components/global/FooterMenu.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/FooterMenu.client.tsx -------------------------------------------------------------------------------- /src/components/global/Header.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/Header.client.tsx -------------------------------------------------------------------------------- /src/components/global/Layout.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/Layout.server.tsx -------------------------------------------------------------------------------- /src/components/global/MenuDrawer.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/MenuDrawer.client.tsx -------------------------------------------------------------------------------- /src/components/global/Modal.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/Modal.client.tsx -------------------------------------------------------------------------------- /src/components/global/NotFound.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/NotFound.server.tsx -------------------------------------------------------------------------------- /src/components/global/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/global/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/index.server.ts -------------------------------------------------------------------------------- /src/components/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/global/index.ts -------------------------------------------------------------------------------- /src/components/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/index.server.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/product/ProductDetail.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/ProductDetail.client.tsx -------------------------------------------------------------------------------- /src/components/product/ProductForm.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/ProductForm.client.tsx -------------------------------------------------------------------------------- /src/components/product/ProductGallery.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/ProductGallery.client.tsx -------------------------------------------------------------------------------- /src/components/product/ProductGrid.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/ProductGrid.client.tsx -------------------------------------------------------------------------------- /src/components/product/ProductOptions.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/ProductOptions.client.tsx -------------------------------------------------------------------------------- /src/components/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/product/index.ts -------------------------------------------------------------------------------- /src/components/search/NoResultRecommendations.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/search/NoResultRecommendations.server.tsx -------------------------------------------------------------------------------- /src/components/search/SearchPage.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/search/SearchPage.server.tsx -------------------------------------------------------------------------------- /src/components/search/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/search/index.server.ts -------------------------------------------------------------------------------- /src/components/sections/FeaturedCollections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/FeaturedCollections.tsx -------------------------------------------------------------------------------- /src/components/sections/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/Hero.tsx -------------------------------------------------------------------------------- /src/components/sections/ProductCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/ProductCards.tsx -------------------------------------------------------------------------------- /src/components/sections/ProductSwimlane.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/ProductSwimlane.server.tsx -------------------------------------------------------------------------------- /src/components/sections/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/index.server.ts -------------------------------------------------------------------------------- /src/components/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/components/sections/index.ts -------------------------------------------------------------------------------- /src/lib/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/const.ts -------------------------------------------------------------------------------- /src/lib/fragments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/fragments.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/placeholders.ts -------------------------------------------------------------------------------- /src/lib/styleUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/styleUtils.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/routes/account/activate/[id]/[activationToken].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/activate/[id]/[activationToken].server.tsx -------------------------------------------------------------------------------- /src/routes/account/activate/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/activate/index.server.ts -------------------------------------------------------------------------------- /src/routes/account/address/[addressId].server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/address/[addressId].server.ts -------------------------------------------------------------------------------- /src/routes/account/address/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/address/index.server.ts -------------------------------------------------------------------------------- /src/routes/account/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/index.server.tsx -------------------------------------------------------------------------------- /src/routes/account/login.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/login.server.tsx -------------------------------------------------------------------------------- /src/routes/account/logout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/logout.server.ts -------------------------------------------------------------------------------- /src/routes/account/orders/[id].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/orders/[id].server.tsx -------------------------------------------------------------------------------- /src/routes/account/recover.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/recover.server.tsx -------------------------------------------------------------------------------- /src/routes/account/register.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/register.server.tsx -------------------------------------------------------------------------------- /src/routes/account/reset/[id]/[resetToken].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/reset/[id]/[resetToken].server.tsx -------------------------------------------------------------------------------- /src/routes/account/reset/index.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/account/reset/index.server.ts -------------------------------------------------------------------------------- /src/routes/admin.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/admin.server.tsx -------------------------------------------------------------------------------- /src/routes/api/bestSellers.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/api/bestSellers.server.ts -------------------------------------------------------------------------------- /src/routes/api/countries.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/api/countries.server.ts -------------------------------------------------------------------------------- /src/routes/builder/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/builder/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/cart.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/cart.server.tsx -------------------------------------------------------------------------------- /src/routes/collections/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/collections/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/collections/all.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/collections/all.server.tsx -------------------------------------------------------------------------------- /src/routes/collections/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/collections/index.server.tsx -------------------------------------------------------------------------------- /src/routes/components/BuilderComponent.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/components/BuilderComponent.client.tsx -------------------------------------------------------------------------------- /src/routes/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/index.server.tsx -------------------------------------------------------------------------------- /src/routes/journal/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/journal/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/journal/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/journal/index.server.tsx -------------------------------------------------------------------------------- /src/routes/pages/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/pages/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/policies/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/policies/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/policies/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/policies/index.server.tsx -------------------------------------------------------------------------------- /src/routes/products/[handle].server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/products/[handle].server.tsx -------------------------------------------------------------------------------- /src/routes/products/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/products/index.server.tsx -------------------------------------------------------------------------------- /src/routes/robots.txt.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/robots.txt.server.ts -------------------------------------------------------------------------------- /src/routes/search.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/search.server.tsx -------------------------------------------------------------------------------- /src/routes/sitemap.xml.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/routes/sitemap.xml.server.ts -------------------------------------------------------------------------------- /src/styles/custom-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/styles/custom-font.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/e2e/collection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tests/e2e/collection.test.ts -------------------------------------------------------------------------------- /tests/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tests/e2e/index.test.ts -------------------------------------------------------------------------------- /tests/e2e/product.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tests/e2e/product.test.ts -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuilderIO/builder-shopify-hydrogen/HEAD/yarn.lock --------------------------------------------------------------------------------