├── .all-contributorsrc ├── .babelrc ├── .editorconfig ├── .env.build.example ├── .github └── workflows │ └── sync-brazil-data.yml ├── .gitignore ├── .nvmrc ├── README.md ├── next.config.js ├── package.json ├── public ├── img │ ├── 404.svg │ ├── 500.svg │ ├── br-flag-active.png │ ├── br-flag-hover.png │ ├── br-flag.png │ ├── brazil.png │ ├── donate.png │ ├── facebook.svg │ ├── flags │ │ ├── bandeira_ac.png │ │ ├── bandeira_al.png │ │ ├── bandeira_am.png │ │ ├── bandeira_ap.png │ │ ├── bandeira_ba.png │ │ ├── bandeira_ce.png │ │ ├── bandeira_df.png │ │ ├── bandeira_es.png │ │ ├── bandeira_go.png │ │ ├── bandeira_ma.png │ │ ├── bandeira_mg.png │ │ ├── bandeira_ms.png │ │ ├── bandeira_mt.png │ │ ├── bandeira_pa.png │ │ ├── bandeira_pb.png │ │ ├── bandeira_pe.png │ │ ├── bandeira_pi.png │ │ ├── bandeira_pr.png │ │ ├── bandeira_rj.png │ │ ├── bandeira_rn.png │ │ ├── bandeira_ro.png │ │ ├── bandeira_rr.png │ │ ├── bandeira_rs.png │ │ ├── bandeira_sc.png │ │ ├── bandeira_se.png │ │ ├── bandeira_sp.png │ │ └── bandeira_to.png │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ ├── twitter.svg │ ├── virus.png │ ├── virus_old.png │ ├── whatsapp.svg │ └── world.png └── manifest.json ├── scripts └── syncBrazilData.js ├── src ├── components │ ├── Button │ │ └── Button.js │ ├── Card │ │ └── Card.js │ ├── Chart │ │ └── Chart.js │ ├── GlobalStyles │ │ └── GlobalStyles.js │ ├── Layout │ │ └── Layout.js │ ├── Maps │ │ ├── BrazilMap.js │ │ ├── MapLegend.js │ │ └── WorldMap.js │ ├── PageAwareLink │ │ └── PageAwareLink.js │ ├── Sidebar │ │ └── Sidebar.js │ ├── StateFlag │ │ └── StateFlag.js │ ├── SummaryItem │ │ └── SummaryItem.js │ ├── Tooltip │ │ └── Tooltip.js │ └── index.js ├── pages │ ├── 404.js │ ├── _app.js │ ├── _document.js │ ├── _error.js │ ├── api │ │ ├── brazil.js │ │ ├── news.js │ │ └── world.js │ ├── brazil.js │ ├── index.js │ ├── news.js │ └── safety.js └── utils │ ├── brazilianStates.js │ ├── buildAreaChartSeries.js │ ├── gtag.js │ ├── index.js │ ├── loadFonts.js │ └── topojson │ └── brazilStates.json ├── vercel.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.build.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.env.build.example -------------------------------------------------------------------------------- /.github/workflows/sync-brazil-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.github/workflows/sync-brazil-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v12.20.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/img/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/404.svg -------------------------------------------------------------------------------- /public/img/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/500.svg -------------------------------------------------------------------------------- /public/img/br-flag-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/br-flag-active.png -------------------------------------------------------------------------------- /public/img/br-flag-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/br-flag-hover.png -------------------------------------------------------------------------------- /public/img/br-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/br-flag.png -------------------------------------------------------------------------------- /public/img/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/brazil.png -------------------------------------------------------------------------------- /public/img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/donate.png -------------------------------------------------------------------------------- /public/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/facebook.svg -------------------------------------------------------------------------------- /public/img/flags/bandeira_ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ac.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_al.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_am.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ap.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ba.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ce.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_df.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_es.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_go.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ma.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_mg.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ms.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_mt.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_pa.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_pb.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_pe.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_pi.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_pr.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_rj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_rj.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_rn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_rn.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_ro.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_rr.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_rs.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_sc.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_se.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_sp.png -------------------------------------------------------------------------------- /public/img/flags/bandeira_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/flags/bandeira_to.png -------------------------------------------------------------------------------- /public/img/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/img/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/img/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/img/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/img/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/img/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/twitter.svg -------------------------------------------------------------------------------- /public/img/virus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/virus.png -------------------------------------------------------------------------------- /public/img/virus_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/virus_old.png -------------------------------------------------------------------------------- /public/img/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/whatsapp.svg -------------------------------------------------------------------------------- /public/img/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/img/world.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/syncBrazilData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/scripts/syncBrazilData.js -------------------------------------------------------------------------------- /src/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Button/Button.js -------------------------------------------------------------------------------- /src/components/Card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Card/Card.js -------------------------------------------------------------------------------- /src/components/Chart/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Chart/Chart.js -------------------------------------------------------------------------------- /src/components/GlobalStyles/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/GlobalStyles/GlobalStyles.js -------------------------------------------------------------------------------- /src/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/Maps/BrazilMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Maps/BrazilMap.js -------------------------------------------------------------------------------- /src/components/Maps/MapLegend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Maps/MapLegend.js -------------------------------------------------------------------------------- /src/components/Maps/WorldMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Maps/WorldMap.js -------------------------------------------------------------------------------- /src/components/PageAwareLink/PageAwareLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/PageAwareLink/PageAwareLink.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/components/StateFlag/StateFlag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/StateFlag/StateFlag.js -------------------------------------------------------------------------------- /src/components/SummaryItem/SummaryItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/SummaryItem/SummaryItem.js -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/Tooltip/Tooltip.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/_error.js -------------------------------------------------------------------------------- /src/pages/api/brazil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/api/brazil.js -------------------------------------------------------------------------------- /src/pages/api/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/api/news.js -------------------------------------------------------------------------------- /src/pages/api/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/api/world.js -------------------------------------------------------------------------------- /src/pages/brazil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/brazil.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/news.js -------------------------------------------------------------------------------- /src/pages/safety.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/pages/safety.js -------------------------------------------------------------------------------- /src/utils/brazilianStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/brazilianStates.js -------------------------------------------------------------------------------- /src/utils/buildAreaChartSeries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/buildAreaChartSeries.js -------------------------------------------------------------------------------- /src/utils/gtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/gtag.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/loadFonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/loadFonts.js -------------------------------------------------------------------------------- /src/utils/topojson/brazilStates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/src/utils/topojson/brazilStates.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathcale/coronavirus-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------