├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── content ├── conferences │ ├── 2019-functional-bangalore.md │ ├── 2019-ghci-bangalore.md │ ├── 2019-jsfoo-bangalore.md │ ├── 2019-jsfoo-coimbatore.md │ ├── 2019-pycon-chennai.md │ ├── 2019-pyconf-hyderabad.md │ ├── 2019-reactIndia-goa.md │ ├── 2019-reactfoo-delhi.md │ ├── 2019-scipy-mumbai.md │ ├── 2020-graphqlAsia-bangalore.md │ ├── 2020-ngIndia-gurugram.md │ └── 2020-reactDay-bangalore.md └── talk-template.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json └── src ├── components ├── SpeakerImage.js ├── TalkCard.js ├── header.js ├── layout.css ├── layout.js └── seo.js ├── images └── speaker.png └── pages ├── 404.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/README.md -------------------------------------------------------------------------------- /content/conferences/2019-functional-bangalore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-functional-bangalore.md -------------------------------------------------------------------------------- /content/conferences/2019-ghci-bangalore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-ghci-bangalore.md -------------------------------------------------------------------------------- /content/conferences/2019-jsfoo-bangalore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-jsfoo-bangalore.md -------------------------------------------------------------------------------- /content/conferences/2019-jsfoo-coimbatore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-jsfoo-coimbatore.md -------------------------------------------------------------------------------- /content/conferences/2019-pycon-chennai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-pycon-chennai.md -------------------------------------------------------------------------------- /content/conferences/2019-pyconf-hyderabad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-pyconf-hyderabad.md -------------------------------------------------------------------------------- /content/conferences/2019-reactIndia-goa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-reactIndia-goa.md -------------------------------------------------------------------------------- /content/conferences/2019-reactfoo-delhi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-reactfoo-delhi.md -------------------------------------------------------------------------------- /content/conferences/2019-scipy-mumbai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2019-scipy-mumbai.md -------------------------------------------------------------------------------- /content/conferences/2020-graphqlAsia-bangalore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2020-graphqlAsia-bangalore.md -------------------------------------------------------------------------------- /content/conferences/2020-ngIndia-gurugram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2020-ngIndia-gurugram.md -------------------------------------------------------------------------------- /content/conferences/2020-reactDay-bangalore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/conferences/2020-reactDay-bangalore.md -------------------------------------------------------------------------------- /content/talk-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/content/talk-template.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/package.json -------------------------------------------------------------------------------- /src/components/SpeakerImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/SpeakerImage.js -------------------------------------------------------------------------------- /src/components/TalkCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/TalkCard.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/images/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/images/speaker.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananyaneogi/dev-conferences-india/HEAD/src/pages/index.js --------------------------------------------------------------------------------