├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── Cart │ │ ├── AddToCart.js │ │ ├── Cart.js │ │ └── CartIcon.js │ ├── ProductDetail │ │ └── ProductDetail.js │ ├── ProductsListing │ │ ├── ProductsListing.js │ │ └── ProductsListingItem.js │ ├── header.js │ ├── image.js │ ├── layout.js │ └── seo.js ├── images │ ├── gatsby-astronaut.png │ ├── gatsby-icon.png │ └── logo.svg ├── pages │ ├── 404.js │ └── index.js ├── style.scss └── templates │ └── ProductDetailTemplate.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Cart/AddToCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/Cart/AddToCart.js -------------------------------------------------------------------------------- /src/components/Cart/Cart.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Cart/CartIcon.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ProductDetail/ProductDetail.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ProductsListing/ProductsListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/ProductsListing/ProductsListing.js -------------------------------------------------------------------------------- /src/components/ProductsListing/ProductsListingItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/ProductsListing/ProductsListingItem.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/image.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/images/logo.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/templates/ProductDetailTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/src/templates/ProductDetailTemplate.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leveluptuts/advanced-gatsby-shopify/HEAD/yarn.lock --------------------------------------------------------------------------------