├── .gitignore ├── README.md └── source ├── .prettierrc ├── LICENSE ├── cleanup.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package-lock.json ├── package.json └── src ├── components ├── Toggle.css ├── interests.js ├── layout.js ├── layout.scss ├── mastHead.js ├── postCard.js ├── projects.js ├── repoCard.js ├── seo.js ├── thoughts.js └── topicCard.js ├── data ├── posts │ ├── 2019-01-29-hello-world.md │ └── 2019-01-30-hello-world.md └── topics.yaml ├── hooks ├── siteMetaData.js └── themeContext.js ├── pages ├── 404.js └── index.js ├── templates └── postTemplate.js └── theme-context.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/README.md -------------------------------------------------------------------------------- /source/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/.prettierrc -------------------------------------------------------------------------------- /source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/LICENSE -------------------------------------------------------------------------------- /source/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/cleanup.js -------------------------------------------------------------------------------- /source/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/gatsby-browser.js -------------------------------------------------------------------------------- /source/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/gatsby-config.js -------------------------------------------------------------------------------- /source/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/gatsby-node.js -------------------------------------------------------------------------------- /source/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/gatsby-ssr.js -------------------------------------------------------------------------------- /source/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/package-lock.json -------------------------------------------------------------------------------- /source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/package.json -------------------------------------------------------------------------------- /source/src/components/Toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/Toggle.css -------------------------------------------------------------------------------- /source/src/components/interests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/interests.js -------------------------------------------------------------------------------- /source/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/layout.js -------------------------------------------------------------------------------- /source/src/components/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/layout.scss -------------------------------------------------------------------------------- /source/src/components/mastHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/mastHead.js -------------------------------------------------------------------------------- /source/src/components/postCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/postCard.js -------------------------------------------------------------------------------- /source/src/components/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/projects.js -------------------------------------------------------------------------------- /source/src/components/repoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/repoCard.js -------------------------------------------------------------------------------- /source/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/seo.js -------------------------------------------------------------------------------- /source/src/components/thoughts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/thoughts.js -------------------------------------------------------------------------------- /source/src/components/topicCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/components/topicCard.js -------------------------------------------------------------------------------- /source/src/data/posts/2019-01-29-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/data/posts/2019-01-29-hello-world.md -------------------------------------------------------------------------------- /source/src/data/posts/2019-01-30-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/data/posts/2019-01-30-hello-world.md -------------------------------------------------------------------------------- /source/src/data/topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/data/topics.yaml -------------------------------------------------------------------------------- /source/src/hooks/siteMetaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/hooks/siteMetaData.js -------------------------------------------------------------------------------- /source/src/hooks/themeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/hooks/themeContext.js -------------------------------------------------------------------------------- /source/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/pages/404.js -------------------------------------------------------------------------------- /source/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/pages/index.js -------------------------------------------------------------------------------- /source/src/templates/postTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/templates/postTemplate.js -------------------------------------------------------------------------------- /source/src/theme-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thakkaryash94/gatsby-github-personal-website/HEAD/source/src/theme-context.js --------------------------------------------------------------------------------