├── .env.example ├── .eslintrc ├── .gitignore ├── .husky └── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── config └── site-config.js ├── functions-src └── contact.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── netlify.toml ├── package.json ├── src ├── components │ ├── Elements.js │ ├── Footer.js │ ├── Header.js │ └── SEO.js ├── consts │ ├── breakpoints.js │ ├── endpoints.js │ ├── style.js │ └── urls.js ├── containers │ └── Layout.js ├── images │ ├── icon.png │ └── logo.png ├── modals │ ├── Basic.js │ └── index.js ├── pages │ ├── 404.js │ ├── blog.js │ └── index.js ├── store │ └── modalContext.js ├── style │ ├── animations.js │ ├── global.js │ ├── mq.js │ └── reboot.js ├── templates │ └── BlogPost.js └── types │ ├── modalTypes.js │ └── propTypes.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/README.md -------------------------------------------------------------------------------- /config/site-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/config/site-config.js -------------------------------------------------------------------------------- /functions-src/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/functions-src/contact.js -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/components/Elements.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/components/SEO.js -------------------------------------------------------------------------------- /src/consts/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/consts/breakpoints.js -------------------------------------------------------------------------------- /src/consts/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/consts/endpoints.js -------------------------------------------------------------------------------- /src/consts/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/consts/style.js -------------------------------------------------------------------------------- /src/consts/urls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/containers/Layout.js -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/modals/Basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/modals/Basic.js -------------------------------------------------------------------------------- /src/modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/modals/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/pages/blog.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/store/modalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/store/modalContext.js -------------------------------------------------------------------------------- /src/style/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/style/animations.js -------------------------------------------------------------------------------- /src/style/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/style/global.js -------------------------------------------------------------------------------- /src/style/mq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/style/mq.js -------------------------------------------------------------------------------- /src/style/reboot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/style/reboot.js -------------------------------------------------------------------------------- /src/templates/BlogPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/templates/BlogPost.js -------------------------------------------------------------------------------- /src/types/modalTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/types/modalTypes.js -------------------------------------------------------------------------------- /src/types/propTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/src/types/propTypes.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/gatsby-datocms-starter/HEAD/yarn.lock --------------------------------------------------------------------------------