├── .env.template ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── resources └── shopify+gatsby.png ├── src ├── components │ ├── Cart │ │ ├── LineItem │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── index.js │ ├── Navigation │ │ ├── index.js │ │ └── styles.js │ ├── ProductForm │ │ └── index.js │ ├── ProductGrid │ │ ├── index.js │ │ └── styles.js │ └── seo.js ├── context │ └── StoreContext.js ├── images │ ├── gatsby-astronaut.png │ └── gatsby-icon.png ├── layouts │ └── index.js ├── pages │ ├── 404.js │ ├── cart.js │ ├── index.js │ └── page-2.js ├── provider │ └── ContextProvider.js ├── templates │ └── ProductPage │ │ ├── index.js │ │ └── styles.js └── utils │ └── styles.js └── yarn.lock /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/package.json -------------------------------------------------------------------------------- /resources/shopify+gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/resources/shopify+gatsby.png -------------------------------------------------------------------------------- /src/components/Cart/LineItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/Cart/LineItem/index.js -------------------------------------------------------------------------------- /src/components/Cart/LineItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/Cart/LineItem/styles.js -------------------------------------------------------------------------------- /src/components/Cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/Cart/index.js -------------------------------------------------------------------------------- /src/components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/Navigation/index.js -------------------------------------------------------------------------------- /src/components/Navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/Navigation/styles.js -------------------------------------------------------------------------------- /src/components/ProductForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/ProductForm/index.js -------------------------------------------------------------------------------- /src/components/ProductGrid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/ProductGrid/index.js -------------------------------------------------------------------------------- /src/components/ProductGrid/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/ProductGrid/styles.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/context/StoreContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/context/StoreContext.js -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/pages/cart.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /src/provider/ContextProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/provider/ContextProvider.js -------------------------------------------------------------------------------- /src/templates/ProductPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/templates/ProductPage/index.js -------------------------------------------------------------------------------- /src/templates/ProductPage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/templates/ProductPage/styles.js -------------------------------------------------------------------------------- /src/utils/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/src/utils/styles.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderProd/gatsby-shopify-starter/HEAD/yarn.lock --------------------------------------------------------------------------------