├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── packages └── gatsby-wp-theme │ ├── .gitignore │ ├── .storybook │ ├── config.js │ ├── main.js │ └── webpack.config.js │ ├── LICENSE │ ├── README.md │ ├── create-pages │ ├── fragements │ │ ├── image │ │ │ └── index.js │ │ └── seo │ │ │ └── index.js │ ├── front-page.js │ ├── pages.js │ └── posts.js │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── package.json │ ├── src │ ├── apollo │ │ ├── client.js │ │ └── wrap-root-element.js │ ├── components │ │ ├── aside │ │ │ ├── index.js │ │ │ └── widgets │ │ │ │ └── categories │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ ├── cart │ │ │ ├── add-to-cart-button │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── cart-dropdown │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── cart-icon │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── cart-item │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ └── cart-items-container │ │ │ │ └── index.js │ │ ├── checkout │ │ │ ├── billing │ │ │ │ └── index.js │ │ │ ├── checkout-cart-item │ │ │ │ └── index.js │ │ │ ├── checkout-error │ │ │ │ └── index.js │ │ │ ├── checkout-form │ │ │ │ └── index.js │ │ │ ├── country-list.js │ │ │ ├── create-account │ │ │ │ └── index.js │ │ │ ├── error │ │ │ │ └── index.js │ │ │ ├── order-success │ │ │ │ └── index.js │ │ │ ├── payment-mode │ │ │ │ └── index.js │ │ │ └── your-order │ │ │ │ └── index.js │ │ ├── context │ │ │ └── AppContext.js │ │ ├── customer-account │ │ │ ├── account-details │ │ │ │ └── index.js │ │ │ ├── addresses │ │ │ │ └── index.js │ │ │ ├── dashboard │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── logout │ │ │ │ └── index.js │ │ │ ├── orders │ │ │ │ └── index.js │ │ │ └── style.scss │ │ ├── footer │ │ │ ├── footer-static.js │ │ │ ├── index.js │ │ │ ├── stories │ │ │ │ ├── footer-data.js │ │ │ │ └── footer.stories.js │ │ │ └── style.scss │ │ ├── header │ │ │ ├── header-static.js │ │ │ ├── image.js │ │ │ ├── index.js │ │ │ ├── nav.js │ │ │ ├── stories │ │ │ │ ├── header-data.js │ │ │ │ └── header.stories.js │ │ │ └── style.scss │ │ ├── home │ │ │ ├── carousel │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── categories │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── client-search │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── products │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── search-results │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ └── search │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ ├── icons │ │ │ ├── dropdown-icon.js │ │ │ ├── facebook-icon.js │ │ │ ├── heart-black-icon.js │ │ │ ├── heart-icon.js │ │ │ ├── instagram-icon.js │ │ │ ├── linkedin-icon.js │ │ │ ├── search-icon.js │ │ │ ├── twitter-icon.js │ │ │ └── youtube-icon.js │ │ ├── layout │ │ │ └── index.js │ │ ├── login │ │ │ ├── index.js │ │ │ └── login.scss │ │ ├── message-alert │ │ │ └── index.js │ │ ├── page │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── product-carousel │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── product │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── register │ │ │ └── index.js │ │ ├── seo │ │ │ └── index.js │ │ ├── single-post │ │ │ └── index.js │ │ ├── single-product │ │ │ └── index.js │ │ ├── social-share-card │ │ │ ├── index.js │ │ │ └── style.scss │ │ └── wishlist │ │ │ ├── add-to-wishlist │ │ │ ├── index.js │ │ │ └── style.scss │ │ │ ├── wishlist-icon │ │ │ └── index.js │ │ │ ├── wishlist-product │ │ │ └── index.js │ │ │ └── wishlist-products │ │ │ └── index.js │ ├── fonts │ │ ├── fonts.css │ │ └── lato-v16-latin │ │ │ ├── lato-v16-latin-300.eot │ │ │ ├── lato-v16-latin-300.svg │ │ │ ├── lato-v16-latin-300.ttf │ │ │ ├── lato-v16-latin-300.woff │ │ │ ├── lato-v16-latin-300.woff2 │ │ │ ├── lato-v16-latin-700.eot │ │ │ ├── lato-v16-latin-700.svg │ │ │ ├── lato-v16-latin-700.ttf │ │ │ ├── lato-v16-latin-700.woff │ │ │ ├── lato-v16-latin-700.woff2 │ │ │ ├── lato-v16-latin-regular.eot │ │ │ ├── lato-v16-latin-regular.svg │ │ │ ├── lato-v16-latin-regular.ttf │ │ │ ├── lato-v16-latin-regular.woff │ │ │ └── lato-v16-latin-regular.woff2 │ ├── images │ │ ├── cart-spinner.gif │ │ ├── favicon.png │ │ ├── footer-background.png │ │ ├── logo.png │ │ └── search-background.png │ ├── mutations │ │ ├── add-to-cart.js │ │ ├── checkout.js │ │ ├── clear-cart.js │ │ ├── login.js │ │ ├── register.js │ │ └── update-cart.js │ ├── pages │ │ ├── 404.js │ │ ├── cart.js │ │ ├── checkout.js │ │ └── wishlist.js │ ├── queries │ │ ├── get-cart.js │ │ ├── get-customer-address.js │ │ ├── get-customer-orders.js │ │ └── get-products.js │ ├── sass │ │ ├── 0-settings │ │ │ ├── _colors.scss │ │ │ ├── _settings.scss │ │ │ ├── _typography.scss │ │ │ └── _variables.scss │ │ ├── 1-tools │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _placeholders.scss │ │ │ └── _tools.scss │ │ ├── 2-generic │ │ │ ├── _animation.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _common-classes.scss │ │ │ ├── _elements.scss │ │ │ ├── _generic.scss │ │ │ ├── _gutenberg-default.scss │ │ │ ├── _icons.scss │ │ │ ├── _normalize.scss │ │ │ └── _wp-classes.scss │ │ ├── _essentials.scss │ │ ├── common.scss │ │ └── vendor │ │ │ └── hamburger │ │ │ ├── _base.scss │ │ │ ├── hamburgers.scss │ │ │ └── types │ │ │ └── _slider.scss │ ├── shared │ │ └── global.js │ ├── stories │ │ └── base-styles │ │ │ ├── color.stories.js │ │ │ └── style.scss │ ├── templates │ │ ├── front-page │ │ │ └── index.js │ │ ├── page │ │ │ └── index.js │ │ └── single-post │ │ │ └── index.js │ ├── utils │ │ └── functions.js │ └── validator │ │ ├── checkout.js │ │ ├── login.js │ │ └── register.js │ └── stories │ ├── 0-Welcome.stories.js │ └── 1-Button.stories.js ├── site ├── .env-example ├── .env.development-example ├── .env.production-example ├── .gitignore ├── gatsby-config.js └── package.json ├── wordpress └── plugins │ ├── headless-cms.zip │ ├── wordpress-seo.zip │ ├── wp-gatsby.zip │ ├── wp-graphql-yoast-seo.zip │ └── wp-graphql.zip └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/package.json -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/.gitignore -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/.storybook/config.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/.storybook/main.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/.storybook/webpack.config.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/LICENSE -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/README.md -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/create-pages/fragements/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/create-pages/fragements/image/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/create-pages/fragements/seo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/create-pages/fragements/seo/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/create-pages/front-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/create-pages/front-page.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/create-pages/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/create-pages/pages.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/create-pages/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/create-pages/posts.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/gatsby-browser.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/gatsby-config.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/gatsby-node.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/gatsby-ssr.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/package.json -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/apollo/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/apollo/client.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/apollo/wrap-root-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/apollo/wrap-root-element.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/aside/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/aside/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/aside/widgets/categories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/aside/widgets/categories/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/aside/widgets/categories/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/aside/widgets/categories/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/add-to-cart-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/add-to-cart-button/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/add-to-cart-button/style.scss: -------------------------------------------------------------------------------- 1 | .woo-next-cart-wrapper { 2 | padding-bottom: 100px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-dropdown/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-dropdown/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-dropdown/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-icon/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-icon/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-icon/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-item/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-item/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-item/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/cart/cart-items-container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/cart/cart-items-container/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/billing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/billing/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/checkout-cart-item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/checkout-cart-item/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/checkout-error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/checkout-error/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/checkout-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/checkout-form/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/country-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/country-list.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/create-account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/create-account/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/error/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/order-success/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/order-success/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/payment-mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/payment-mode/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/checkout/your-order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/checkout/your-order/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/context/AppContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/context/AppContext.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/account-details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/account-details/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/addresses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/addresses/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/dashboard/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/logout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/logout/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/orders/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/customer-account/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/customer-account/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/footer/footer-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/footer/footer-static.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/footer/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/footer/stories/footer-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/footer/stories/footer-data.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/footer/stories/footer.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/footer/stories/footer.stories.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/footer/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/footer/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/header-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/header-static.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/image.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/nav.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/stories/header-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/stories/header-data.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/stories/header.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/stories/header.stories.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/header/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/header/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/carousel/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/carousel/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/carousel/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/categories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/categories/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/categories/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/categories/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/client-search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/client-search/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/client-search/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/client-search/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/products/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/products/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/products/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/search-results/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/search-results/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/search-results/style.scss: -------------------------------------------------------------------------------- 1 | .search-results { 2 | width: 100%; 3 | margin-top: 30px; 4 | } 5 | -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/search/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/home/search/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/home/search/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/dropdown-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/dropdown-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/facebook-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/facebook-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/heart-black-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/heart-black-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/heart-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/heart-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/instagram-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/instagram-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/linkedin-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/linkedin-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/search-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/search-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/twitter-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/twitter-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/icons/youtube-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/icons/youtube-icon.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/layout/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/login/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/login/login.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/message-alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/message-alert/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/page/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/page/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/page/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/product-carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/product-carousel/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/product-carousel/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/product-carousel/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/product/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/product/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/product/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/register/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/seo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/seo/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/single-post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/single-post/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/single-product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/single-product/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/social-share-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/social-share-card/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/social-share-card/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/social-share-card/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/wishlist/add-to-wishlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/wishlist/add-to-wishlist/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/wishlist/add-to-wishlist/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/wishlist/add-to-wishlist/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/wishlist/wishlist-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/wishlist/wishlist-icon/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/wishlist/wishlist-product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/wishlist/wishlist-product/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/components/wishlist/wishlist-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/components/wishlist/wishlist-products/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/fonts.css -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.eot -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.svg -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.ttf -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.woff -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-300.woff2 -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.eot -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.svg -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.ttf -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.woff -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-700.woff2 -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.eot -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.svg -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.ttf -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.woff -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/fonts/lato-v16-latin/lato-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/images/cart-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/images/cart-spinner.gif -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/images/favicon.png -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/images/footer-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/images/footer-background.png -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/images/logo.png -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/images/search-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/images/search-background.png -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/add-to-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/add-to-cart.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/checkout.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/clear-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/clear-cart.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/login.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/register.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/mutations/update-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/mutations/update-cart.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/pages/404.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/pages/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/pages/cart.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/pages/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/pages/checkout.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/pages/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/pages/wishlist.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/queries/get-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/queries/get-cart.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/queries/get-customer-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/queries/get-customer-address.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/queries/get-customer-orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/queries/get-customer-orders.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/queries/get-products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/queries/get-products.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/0-settings/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/0-settings/_colors.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/0-settings/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/0-settings/_settings.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/0-settings/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/0-settings/_typography.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/0-settings/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/0-settings/_variables.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/1-tools/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/1-tools/_functions.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/1-tools/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/1-tools/_mixins.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/1-tools/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/1-tools/_placeholders.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/1-tools/_tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/1-tools/_tools.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_animation.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_bootstrap.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_common-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_common-classes.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_elements.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_generic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_generic.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_gutenberg-default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_gutenberg-default.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_icons.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_normalize.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/2-generic/_wp-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/2-generic/_wp-classes.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/_essentials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/_essentials.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/common.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/vendor/hamburger/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/vendor/hamburger/_base.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/vendor/hamburger/hamburgers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/vendor/hamburger/hamburgers.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/sass/vendor/hamburger/types/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/sass/vendor/hamburger/types/_slider.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/shared/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/shared/global.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/stories/base-styles/color.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/stories/base-styles/color.stories.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/stories/base-styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/stories/base-styles/style.scss -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/templates/front-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/templates/front-page/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/templates/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/templates/page/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/templates/single-post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/templates/single-post/index.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/utils/functions.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/validator/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/validator/checkout.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/validator/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/validator/login.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/src/validator/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/src/validator/register.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/stories/0-Welcome.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/stories/0-Welcome.stories.js -------------------------------------------------------------------------------- /packages/gatsby-wp-theme/stories/1-Button.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/packages/gatsby-wp-theme/stories/1-Button.stories.js -------------------------------------------------------------------------------- /site/.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/site/.env-example -------------------------------------------------------------------------------- /site/.env.development-example: -------------------------------------------------------------------------------- 1 | GATSBY_WORDPRESS_SITE_URL=https://example.com 2 | -------------------------------------------------------------------------------- /site/.env.production-example: -------------------------------------------------------------------------------- 1 | GATSBY_WORDPRESS_SITE_URL=https://example.com 2 | -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/site/gatsby-config.js -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/site/package.json -------------------------------------------------------------------------------- /wordpress/plugins/headless-cms.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/wordpress/plugins/headless-cms.zip -------------------------------------------------------------------------------- /wordpress/plugins/wordpress-seo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/wordpress/plugins/wordpress-seo.zip -------------------------------------------------------------------------------- /wordpress/plugins/wp-gatsby.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/wordpress/plugins/wp-gatsby.zip -------------------------------------------------------------------------------- /wordpress/plugins/wp-graphql-yoast-seo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/wordpress/plugins/wp-graphql-yoast-seo.zip -------------------------------------------------------------------------------- /wordpress/plugins/wp-graphql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/wordpress/plugins/wp-graphql.zip -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/gatsby-wp-themes/HEAD/yarn.lock --------------------------------------------------------------------------------