├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── netlify.toml ├── package.json ├── src ├── components │ ├── ArticleView.js │ ├── CartItems.js │ ├── CartSteps.js │ ├── CheckoutForm.js │ ├── CheckoutProgress.js │ ├── Content.js │ ├── CouponForm.js │ ├── CouponItem.js │ ├── Footer.js │ ├── Header.js │ ├── Heading.js │ ├── HomeAbout.js │ ├── HomeBanner.js │ ├── Layout.js │ ├── NewsItem.js │ ├── PageView.js │ ├── PaymentConfirmed.js │ ├── PaymentForm.js │ ├── ProductGallery.js │ ├── ProductInfo.js │ ├── ProductItem.js │ ├── ProductView.js │ ├── ProductsList.js │ ├── ScrollButton.js │ ├── Seo.js │ ├── SocialIcons.js │ └── SubscribeForm.js ├── html.js ├── pages │ ├── 404.js │ ├── blog.js │ ├── cart.js │ ├── contact.js │ ├── coupons.js │ └── index.js └── utils │ ├── apolloClient.js │ ├── config.js │ ├── helpers.js │ ├── localState.js │ ├── theme.js │ └── wrapRootElement.js ├── static ├── images │ ├── contact.svg │ ├── home-bg-3.jpg │ ├── logo-1024.png │ └── payment-strip.png ├── js │ └── scripts.js └── robots.txt └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/package.json -------------------------------------------------------------------------------- /src/components/ArticleView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ArticleView.js -------------------------------------------------------------------------------- /src/components/CartItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CartItems.js -------------------------------------------------------------------------------- /src/components/CartSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CartSteps.js -------------------------------------------------------------------------------- /src/components/CheckoutForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CheckoutForm.js -------------------------------------------------------------------------------- /src/components/CheckoutProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CheckoutProgress.js -------------------------------------------------------------------------------- /src/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Content.js -------------------------------------------------------------------------------- /src/components/CouponForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CouponForm.js -------------------------------------------------------------------------------- /src/components/CouponItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/CouponItem.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Heading.js -------------------------------------------------------------------------------- /src/components/HomeAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/HomeAbout.js -------------------------------------------------------------------------------- /src/components/HomeBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/HomeBanner.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/NewsItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/NewsItem.js -------------------------------------------------------------------------------- /src/components/PageView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/PageView.js -------------------------------------------------------------------------------- /src/components/PaymentConfirmed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/PaymentConfirmed.js -------------------------------------------------------------------------------- /src/components/PaymentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/PaymentForm.js -------------------------------------------------------------------------------- /src/components/ProductGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ProductGallery.js -------------------------------------------------------------------------------- /src/components/ProductInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ProductInfo.js -------------------------------------------------------------------------------- /src/components/ProductItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ProductItem.js -------------------------------------------------------------------------------- /src/components/ProductView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ProductView.js -------------------------------------------------------------------------------- /src/components/ProductsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ProductsList.js -------------------------------------------------------------------------------- /src/components/ScrollButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/ScrollButton.js -------------------------------------------------------------------------------- /src/components/Seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/Seo.js -------------------------------------------------------------------------------- /src/components/SocialIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/SocialIcons.js -------------------------------------------------------------------------------- /src/components/SubscribeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/components/SubscribeForm.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/html.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/blog.js -------------------------------------------------------------------------------- /src/pages/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/cart.js -------------------------------------------------------------------------------- /src/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/contact.js -------------------------------------------------------------------------------- /src/pages/coupons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/coupons.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/utils/apolloClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/apolloClient.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /src/utils/localState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/localState.js -------------------------------------------------------------------------------- /src/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/theme.js -------------------------------------------------------------------------------- /src/utils/wrapRootElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/src/utils/wrapRootElement.js -------------------------------------------------------------------------------- /static/images/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/static/images/contact.svg -------------------------------------------------------------------------------- /static/images/home-bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/static/images/home-bg-3.jpg -------------------------------------------------------------------------------- /static/images/logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/static/images/logo-1024.png -------------------------------------------------------------------------------- /static/images/payment-strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/static/images/payment-strip.png -------------------------------------------------------------------------------- /static/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs-ecommerce/web-v1-old/HEAD/yarn.lock --------------------------------------------------------------------------------