├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── footer.js ├── layout.js ├── navbar.js └── scanner.js ├── contexts ├── bodycomposition.context.js └── notifications.context.js ├── jsconfig.json ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── faq.js ├── index.js ├── scale │ └── xiaomi.js └── sync │ └── garmin.js ├── postcss.config.js ├── public ├── favicon.ico └── weighing-scale-64.png ├── resources └── img │ └── screenshots │ ├── 1_index.png │ ├── 2_xiaomi_scanner.png │ ├── 3_request.png │ ├── 4_scanning.png │ ├── 5_result.png │ ├── 6_garmin_form.png │ ├── 7_faq.png │ └── 8_garmin_result.png ├── services ├── metrics.js └── scanner.js ├── styles └── globals.css └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/README.md -------------------------------------------------------------------------------- /components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/components/footer.js -------------------------------------------------------------------------------- /components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/components/layout.js -------------------------------------------------------------------------------- /components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/components/navbar.js -------------------------------------------------------------------------------- /components/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/components/scanner.js -------------------------------------------------------------------------------- /contexts/bodycomposition.context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/contexts/bodycomposition.context.js -------------------------------------------------------------------------------- /contexts/notifications.context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/contexts/notifications.context.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/faq.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/scale/xiaomi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/scale/xiaomi.js -------------------------------------------------------------------------------- /pages/sync/garmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/pages/sync/garmin.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/weighing-scale-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/public/weighing-scale-64.png -------------------------------------------------------------------------------- /resources/img/screenshots/1_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/1_index.png -------------------------------------------------------------------------------- /resources/img/screenshots/2_xiaomi_scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/2_xiaomi_scanner.png -------------------------------------------------------------------------------- /resources/img/screenshots/3_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/3_request.png -------------------------------------------------------------------------------- /resources/img/screenshots/4_scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/4_scanning.png -------------------------------------------------------------------------------- /resources/img/screenshots/5_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/5_result.png -------------------------------------------------------------------------------- /resources/img/screenshots/6_garmin_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/6_garmin_form.png -------------------------------------------------------------------------------- /resources/img/screenshots/7_faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/7_faq.png -------------------------------------------------------------------------------- /resources/img/screenshots/8_garmin_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/resources/img/screenshots/8_garmin_result.png -------------------------------------------------------------------------------- /services/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/services/metrics.js -------------------------------------------------------------------------------- /services/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/services/scanner.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lswiderski/WebBodyComposition/HEAD/tailwind.config.js --------------------------------------------------------------------------------