├── .gitignore ├── LICENSE.txt ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── scripts └── compute-hotspots.js ├── src ├── components │ ├── ClubCard.js │ ├── Dropdown.js │ ├── Footer.js │ ├── Header.js │ ├── NoClubsFound.js │ ├── SearchInfo.js │ ├── SearchInput.js │ ├── Settings.js │ ├── Slider.js │ └── hotspots │ │ └── HotspotCard.js ├── data.json ├── hotspots.js ├── html.js ├── layouts │ └── index.js ├── pages │ ├── 404.js │ ├── hotspots.js │ └── index.js ├── templates │ └── hotspot.js └── utils.js ├── static ├── _redirects ├── favicon.png ├── flag.svg ├── hotspot │ ├── bay-area.jpg │ ├── california.jpg │ ├── canada.jpg │ ├── chicago.jpg │ ├── china.jpg │ ├── india.jpg │ ├── los-angeles.jpg │ ├── new-york.jpg │ ├── philadelphia.jpg │ └── usa.jpg ├── pattern.svg └── placeholder.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/package.json -------------------------------------------------------------------------------- /scripts/compute-hotspots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/scripts/compute-hotspots.js -------------------------------------------------------------------------------- /src/components/ClubCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/ClubCard.js -------------------------------------------------------------------------------- /src/components/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/Dropdown.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/NoClubsFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/NoClubsFound.js -------------------------------------------------------------------------------- /src/components/SearchInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/SearchInfo.js -------------------------------------------------------------------------------- /src/components/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/SearchInput.js -------------------------------------------------------------------------------- /src/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/Settings.js -------------------------------------------------------------------------------- /src/components/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/Slider.js -------------------------------------------------------------------------------- /src/components/hotspots/HotspotCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/components/hotspots/HotspotCard.js -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/data.json -------------------------------------------------------------------------------- /src/hotspots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/hotspots.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/html.js -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/hotspots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/pages/hotspots.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/hotspot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/templates/hotspot.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/src/utils.js -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/_redirects -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/flag.svg -------------------------------------------------------------------------------- /static/hotspot/bay-area.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/bay-area.jpg -------------------------------------------------------------------------------- /static/hotspot/california.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/california.jpg -------------------------------------------------------------------------------- /static/hotspot/canada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/canada.jpg -------------------------------------------------------------------------------- /static/hotspot/chicago.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/chicago.jpg -------------------------------------------------------------------------------- /static/hotspot/china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/china.jpg -------------------------------------------------------------------------------- /static/hotspot/india.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/india.jpg -------------------------------------------------------------------------------- /static/hotspot/los-angeles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/los-angeles.jpg -------------------------------------------------------------------------------- /static/hotspot/new-york.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/new-york.jpg -------------------------------------------------------------------------------- /static/hotspot/philadelphia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/philadelphia.jpg -------------------------------------------------------------------------------- /static/hotspot/usa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/hotspot/usa.jpg -------------------------------------------------------------------------------- /static/pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/pattern.svg -------------------------------------------------------------------------------- /static/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/static/placeholder.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifvictr/finder/HEAD/yarn.lock --------------------------------------------------------------------------------