├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── data └── .keep ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── Icon.js ├── components │ ├── EmailListForm.js │ ├── EventCard.js │ ├── EventList.js │ ├── Footer.js │ ├── GroupCard.js │ ├── Layout │ │ ├── index.js │ │ └── social.jpg │ └── Tilt.js ├── data.json ├── pages │ ├── 404.js │ └── index.js ├── regions.js ├── templates │ └── region.js └── utils.js ├── static ├── card.png ├── flag.svg ├── icon.png └── mlh-logo-grayscale.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/README.md -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/package.json -------------------------------------------------------------------------------- /src/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/Icon.js -------------------------------------------------------------------------------- /src/components/EmailListForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/EmailListForm.js -------------------------------------------------------------------------------- /src/components/EventCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/EventCard.js -------------------------------------------------------------------------------- /src/components/EventList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/EventList.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/GroupCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/GroupCard.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/Layout/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/Layout/social.jpg -------------------------------------------------------------------------------- /src/components/Tilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/components/Tilt.js -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/data.json -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/regions.js -------------------------------------------------------------------------------- /src/templates/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/templates/region.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/src/utils.js -------------------------------------------------------------------------------- /static/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/static/card.png -------------------------------------------------------------------------------- /static/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/static/flag.svg -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/mlh-logo-grayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/static/mlh-logo-grayscale.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackathons-v1/HEAD/yarn.lock --------------------------------------------------------------------------------