├── .env ├── .github └── workflows │ └── codesee-arch-diagram.yml ├── .gitignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HACKTOBERFEST.md ├── LICENSE ├── README.md ├── package.json ├── public ├── HazzWeatherCloudy.png ├── HazzWeatherLined.png ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── asset ├── lake-background.jpg ├── main_bg.jpg ├── not-found.svg └── search.svg ├── components ├── Animation.js ├── BackgroundColor.js ├── BackgroundImage.js ├── BackgroundSound.js ├── CloudsCard.js ├── DetailsCard.js ├── MoreInfoCard.js └── SummaryCard.js ├── css ├── DetailsCard.css └── SummaryCard.css ├── helpers └── convertToFahrenheit.js ├── index.css ├── index.js ├── languages ├── bn.json ├── en.json ├── es.json ├── fr.json ├── he.json ├── hnd.json ├── i18n.js ├── id.json ├── it.json ├── ko.json ├── ne-NP.json ├── pt-BR.json ├── sw.json ├── ta.json ├── ukr.json └── zh.json ├── reportWebVitals.js └── setupTests.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HACKTOBERFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/HACKTOBERFEST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/package.json -------------------------------------------------------------------------------- /public/HazzWeatherCloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/HazzWeatherCloudy.png -------------------------------------------------------------------------------- /public/HazzWeatherLined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/HazzWeatherLined.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/App.js -------------------------------------------------------------------------------- /src/asset/lake-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/asset/lake-background.jpg -------------------------------------------------------------------------------- /src/asset/main_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/asset/main_bg.jpg -------------------------------------------------------------------------------- /src/asset/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/asset/not-found.svg -------------------------------------------------------------------------------- /src/asset/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/asset/search.svg -------------------------------------------------------------------------------- /src/components/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/Animation.js -------------------------------------------------------------------------------- /src/components/BackgroundColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/BackgroundColor.js -------------------------------------------------------------------------------- /src/components/BackgroundImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/BackgroundImage.js -------------------------------------------------------------------------------- /src/components/BackgroundSound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/BackgroundSound.js -------------------------------------------------------------------------------- /src/components/CloudsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/CloudsCard.js -------------------------------------------------------------------------------- /src/components/DetailsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/DetailsCard.js -------------------------------------------------------------------------------- /src/components/MoreInfoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/MoreInfoCard.js -------------------------------------------------------------------------------- /src/components/SummaryCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/components/SummaryCard.js -------------------------------------------------------------------------------- /src/css/DetailsCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/css/DetailsCard.css -------------------------------------------------------------------------------- /src/css/SummaryCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/css/SummaryCard.css -------------------------------------------------------------------------------- /src/helpers/convertToFahrenheit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/helpers/convertToFahrenheit.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/index.js -------------------------------------------------------------------------------- /src/languages/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/bn.json -------------------------------------------------------------------------------- /src/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/en.json -------------------------------------------------------------------------------- /src/languages/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/es.json -------------------------------------------------------------------------------- /src/languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/fr.json -------------------------------------------------------------------------------- /src/languages/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/he.json -------------------------------------------------------------------------------- /src/languages/hnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/hnd.json -------------------------------------------------------------------------------- /src/languages/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/i18n.js -------------------------------------------------------------------------------- /src/languages/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/id.json -------------------------------------------------------------------------------- /src/languages/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/it.json -------------------------------------------------------------------------------- /src/languages/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/ko.json -------------------------------------------------------------------------------- /src/languages/ne-NP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/ne-NP.json -------------------------------------------------------------------------------- /src/languages/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/pt-BR.json -------------------------------------------------------------------------------- /src/languages/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/sw.json -------------------------------------------------------------------------------- /src/languages/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/ta.json -------------------------------------------------------------------------------- /src/languages/ukr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/ukr.json -------------------------------------------------------------------------------- /src/languages/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/languages/zh.json -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HridoyHazard/HazzWeather/HEAD/src/setupTests.js --------------------------------------------------------------------------------