├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── conf ├── authnginx │ └── htpasswd └── default.conf ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── screenshot-cards.png ├── screenshot-dashboard.png ├── screenshot-signup.png ├── screenshot-wizard.png ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Cards.js │ ├── Dashboard.js │ ├── Main.js │ ├── Menu.js │ ├── ScrollTop.js │ ├── Signup.js │ ├── SimpleLineChart.js │ ├── Topbar.js │ ├── Wizard.js │ ├── buttons │ │ └── ButtonBar.js │ ├── cards │ │ └── CardItem.js │ ├── common │ │ ├── Back.js │ │ ├── Loading.js │ │ └── Months.js │ ├── dialogs │ │ ├── BaseDialog.js │ │ ├── InstructionDialog.js │ │ └── SwipeDialog.js │ └── typo │ │ └── SectionHeader.js ├── images │ ├── back-arrow.svg │ ├── logo.svg │ └── shape.svg ├── index.css ├── index.js ├── routes.js └── serviceWorker.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | build/ 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/README.md -------------------------------------------------------------------------------- /conf/authnginx/htpasswd: -------------------------------------------------------------------------------- 1 | dbprototest:saHJ36Omlhks2 -------------------------------------------------------------------------------- /conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/conf/default.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/public/manifest.json -------------------------------------------------------------------------------- /screenshot-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/screenshot-cards.png -------------------------------------------------------------------------------- /screenshot-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/screenshot-dashboard.png -------------------------------------------------------------------------------- /screenshot-signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/screenshot-signup.png -------------------------------------------------------------------------------- /screenshot-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/screenshot-wizard.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Cards.js -------------------------------------------------------------------------------- /src/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Dashboard.js -------------------------------------------------------------------------------- /src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Main.js -------------------------------------------------------------------------------- /src/components/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Menu.js -------------------------------------------------------------------------------- /src/components/ScrollTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/ScrollTop.js -------------------------------------------------------------------------------- /src/components/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Signup.js -------------------------------------------------------------------------------- /src/components/SimpleLineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/SimpleLineChart.js -------------------------------------------------------------------------------- /src/components/Topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Topbar.js -------------------------------------------------------------------------------- /src/components/Wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/Wizard.js -------------------------------------------------------------------------------- /src/components/buttons/ButtonBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/buttons/ButtonBar.js -------------------------------------------------------------------------------- /src/components/cards/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/cards/CardItem.js -------------------------------------------------------------------------------- /src/components/common/Back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/common/Back.js -------------------------------------------------------------------------------- /src/components/common/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/common/Loading.js -------------------------------------------------------------------------------- /src/components/common/Months.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/common/Months.js -------------------------------------------------------------------------------- /src/components/dialogs/BaseDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/dialogs/BaseDialog.js -------------------------------------------------------------------------------- /src/components/dialogs/InstructionDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/dialogs/InstructionDialog.js -------------------------------------------------------------------------------- /src/components/dialogs/SwipeDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/dialogs/SwipeDialog.js -------------------------------------------------------------------------------- /src/components/typo/SectionHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/components/typo/SectionHeader.js -------------------------------------------------------------------------------- /src/images/back-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/images/back-arrow.svg -------------------------------------------------------------------------------- /src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/images/logo.svg -------------------------------------------------------------------------------- /src/images/shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/images/shape.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanmtz/material-sense/HEAD/yarn.lock --------------------------------------------------------------------------------