├── .editorconfig ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yaml ├── package.json ├── public ├── css │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── custom.css │ ├── font-awesome │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ └── selection.css ├── favicon.ico ├── icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg ├── img │ └── meta_landing_screen.png ├── index.html └── manifest.json ├── src ├── App.test.js ├── Components │ ├── App.js │ ├── CityDropDownComponent.js │ ├── CurrentCostOfLivingComponent.js │ ├── NewCostOfLivingComponent.js │ ├── SubComponents │ │ ├── Cities.js │ │ ├── FooterComponent.js │ │ ├── SpotAHomeDetailsComponent.js │ │ └── WelcomeDetailsComponent.js │ └── WelcomeComponent.js ├── citii_logo.png ├── data │ ├── cities.js │ └── cost_of_living_indices.json ├── index.js ├── logo.png ├── logo.svg ├── logo_2.png ├── sky_banner.png └── teleport_logo.svg └── sw-precache-config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/package.json -------------------------------------------------------------------------------- /public/css/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /public/css/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /public/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/css/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/css/selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/css/selection.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/browserconfig.xml -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/favicon.ico -------------------------------------------------------------------------------- /public/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/img/meta_landing_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/img/meta_landing_screen.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/App.js -------------------------------------------------------------------------------- /src/Components/CityDropDownComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/CityDropDownComponent.js -------------------------------------------------------------------------------- /src/Components/CurrentCostOfLivingComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/CurrentCostOfLivingComponent.js -------------------------------------------------------------------------------- /src/Components/NewCostOfLivingComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/NewCostOfLivingComponent.js -------------------------------------------------------------------------------- /src/Components/SubComponents/Cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/SubComponents/Cities.js -------------------------------------------------------------------------------- /src/Components/SubComponents/FooterComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/SubComponents/FooterComponent.js -------------------------------------------------------------------------------- /src/Components/SubComponents/SpotAHomeDetailsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/SubComponents/SpotAHomeDetailsComponent.js -------------------------------------------------------------------------------- /src/Components/SubComponents/WelcomeDetailsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/SubComponents/WelcomeDetailsComponent.js -------------------------------------------------------------------------------- /src/Components/WelcomeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/Components/WelcomeComponent.js -------------------------------------------------------------------------------- /src/citii_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/citii_logo.png -------------------------------------------------------------------------------- /src/data/cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/data/cities.js -------------------------------------------------------------------------------- /src/data/cost_of_living_indices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/data/cost_of_living_indices.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/logo.png -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/logo_2.png -------------------------------------------------------------------------------- /src/sky_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/sky_banner.png -------------------------------------------------------------------------------- /src/teleport_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/src/teleport_logo.svg -------------------------------------------------------------------------------- /sw-precache-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djirdehh/react-living-app/HEAD/sw-precache-config.js --------------------------------------------------------------------------------