├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── data └── config.js ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── src ├── components │ ├── app.js │ ├── common │ │ ├── link.js │ │ └── socialLink.js │ ├── footer.js │ ├── header.js │ ├── imageGallery.js │ ├── layout.js │ ├── seo.js │ └── theme │ │ ├── index.js │ │ └── layout.css └── pages │ ├── 404.js │ └── index.js ├── static └── images │ ├── favicon.png │ └── thumbnail.png └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/README.md -------------------------------------------------------------------------------- /data/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/data/config.js -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/package.json -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/common/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/common/link.js -------------------------------------------------------------------------------- /src/components/common/socialLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/common/socialLink.js -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/imageGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/imageGallery.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/theme/index.js -------------------------------------------------------------------------------- /src/components/theme/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/components/theme/layout.css -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/static/images/thumbnail.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrodz/gatsby-starter-instagram-baseweb/HEAD/yarn.lock --------------------------------------------------------------------------------