├── .DS_Store ├── .env.development ├── .gitignore ├── README.md ├── README_imgs ├── Netlify_07.jpg ├── Screen Shot 2020-04-02 at 4.08.37 PM.png ├── Shopify_01.jpg ├── Shopify_02.jpg ├── Shopify_03.jpg ├── Shopify_04.jpg ├── Shopify_05.jpg ├── Shopify_06.jpg └── Shopify_08.jpg ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── Provider │ └── ContextProvider.js ├── StoreContext │ └── index.js ├── components │ ├── AddToCart │ │ ├── index.js │ │ ├── styles.js │ │ └── variants.js │ ├── Cart │ │ ├── Buttons │ │ │ ├── CheckoutButton.js │ │ │ ├── OutOfStock.js │ │ │ ├── RemoveProduct.js │ │ │ └── styles.js │ │ ├── HelperFns │ │ │ └── index.js │ │ ├── LineItems │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Wrapper │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── index.js │ │ └── styles.js │ ├── Footer │ │ ├── index.js │ │ └── styles.js │ ├── Navigation │ │ ├── index.js │ │ └── styles.js │ └── Product │ │ ├── index.js │ │ └── styles.js ├── gatsby-plugin-theme-ui │ ├── components.js │ ├── index.js │ └── type.js ├── layouts │ └── index.js ├── pages │ ├── cart.js │ └── index.js ├── styles │ ├── cart.styles.js │ └── index.styles.js └── templates │ └── ProductPage │ └── index.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/.env.development -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README.md -------------------------------------------------------------------------------- /README_imgs/Netlify_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Netlify_07.jpg -------------------------------------------------------------------------------- /README_imgs/Screen Shot 2020-04-02 at 4.08.37 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Screen Shot 2020-04-02 at 4.08.37 PM.png -------------------------------------------------------------------------------- /README_imgs/Shopify_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_01.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_02.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_03.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_04.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_05.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_06.jpg -------------------------------------------------------------------------------- /README_imgs/Shopify_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/README_imgs/Shopify_08.jpg -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/Provider/ContextProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/Provider/ContextProvider.js -------------------------------------------------------------------------------- /src/StoreContext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/StoreContext/index.js -------------------------------------------------------------------------------- /src/components/AddToCart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/AddToCart/index.js -------------------------------------------------------------------------------- /src/components/AddToCart/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/AddToCart/styles.js -------------------------------------------------------------------------------- /src/components/AddToCart/variants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/AddToCart/variants.js -------------------------------------------------------------------------------- /src/components/Cart/Buttons/CheckoutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Buttons/CheckoutButton.js -------------------------------------------------------------------------------- /src/components/Cart/Buttons/OutOfStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Buttons/OutOfStock.js -------------------------------------------------------------------------------- /src/components/Cart/Buttons/RemoveProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Buttons/RemoveProduct.js -------------------------------------------------------------------------------- /src/components/Cart/Buttons/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Buttons/styles.js -------------------------------------------------------------------------------- /src/components/Cart/HelperFns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/HelperFns/index.js -------------------------------------------------------------------------------- /src/components/Cart/LineItems/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/LineItems/index.js -------------------------------------------------------------------------------- /src/components/Cart/LineItems/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/LineItems/styles.js -------------------------------------------------------------------------------- /src/components/Cart/Wrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Wrapper/index.js -------------------------------------------------------------------------------- /src/components/Cart/Wrapper/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/Wrapper/styles.js -------------------------------------------------------------------------------- /src/components/Cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/index.js -------------------------------------------------------------------------------- /src/components/Cart/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Cart/styles.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Footer/styles.js -------------------------------------------------------------------------------- /src/components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Navigation/index.js -------------------------------------------------------------------------------- /src/components/Navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Navigation/styles.js -------------------------------------------------------------------------------- /src/components/Product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Product/index.js -------------------------------------------------------------------------------- /src/components/Product/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/components/Product/styles.js -------------------------------------------------------------------------------- /src/gatsby-plugin-theme-ui/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/gatsby-plugin-theme-ui/components.js -------------------------------------------------------------------------------- /src/gatsby-plugin-theme-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/gatsby-plugin-theme-ui/index.js -------------------------------------------------------------------------------- /src/gatsby-plugin-theme-ui/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/gatsby-plugin-theme-ui/type.js -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/pages/cart.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/cart.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/styles/cart.styles.js -------------------------------------------------------------------------------- /src/styles/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/styles/index.styles.js -------------------------------------------------------------------------------- /src/templates/ProductPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/src/templates/ProductPage/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyTheModernist/gatsby-shopify-starter/HEAD/yarn.lock --------------------------------------------------------------------------------