├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .huskyrc ├── .lintstagedrc ├── .npmrc ├── .prettierrc ├── README.md ├── README.zh.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── android-chrome-512x512.png ├── apple-launch-image.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img │ ├── close.svg │ ├── info.svg │ ├── reward.jpg │ └── setting.svg ├── manifest.json ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg ├── site.webmanifest └── splash │ ├── ipad_splash.png │ ├── ipadpro1_splash.png │ ├── ipadpro2_splash.png │ ├── ipadpro3_splash.png │ ├── iphone5_splash.png │ ├── iphone6_splash.png │ ├── iphoneplus_splash.png │ ├── iphonex_splash.png │ ├── iphonexr_splash.png │ └── iphonexsmax_splash.png ├── src ├── App.jsx ├── Global.style.js ├── assets │ └── img │ │ └── bg.jpg ├── components │ ├── Header.jsx │ ├── InfoModal.jsx │ ├── ParticlesBackground.jsx │ ├── ProgressBar.jsx │ ├── Setting.jsx │ ├── SettingButton.jsx │ ├── StyledButton.jsx │ ├── Tip.jsx │ ├── animates.js │ └── snow.ts ├── containers │ └── Aside.jsx ├── main.jsx ├── useSetting.js └── utils.js └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.huskyrc -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "src/**/*.{js,jsx}": ["eslint --fix"] 3 | } 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/README.zh.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-launch-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/apple-launch-image.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/img/close.svg -------------------------------------------------------------------------------- /public/img/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/img/info.svg -------------------------------------------------------------------------------- /public/img/reward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/img/reward.jpg -------------------------------------------------------------------------------- /public/img/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/img/setting.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/splash/ipad_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/ipad_splash.png -------------------------------------------------------------------------------- /public/splash/ipadpro1_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/ipadpro1_splash.png -------------------------------------------------------------------------------- /public/splash/ipadpro2_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/ipadpro2_splash.png -------------------------------------------------------------------------------- /public/splash/ipadpro3_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/ipadpro3_splash.png -------------------------------------------------------------------------------- /public/splash/iphone5_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphone5_splash.png -------------------------------------------------------------------------------- /public/splash/iphone6_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphone6_splash.png -------------------------------------------------------------------------------- /public/splash/iphoneplus_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphoneplus_splash.png -------------------------------------------------------------------------------- /public/splash/iphonex_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphonex_splash.png -------------------------------------------------------------------------------- /public/splash/iphonexr_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphonexr_splash.png -------------------------------------------------------------------------------- /public/splash/iphonexsmax_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/public/splash/iphonexsmax_splash.png -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Global.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/Global.style.js -------------------------------------------------------------------------------- /src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/InfoModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/InfoModal.jsx -------------------------------------------------------------------------------- /src/components/ParticlesBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/ParticlesBackground.jsx -------------------------------------------------------------------------------- /src/components/ProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/ProgressBar.jsx -------------------------------------------------------------------------------- /src/components/Setting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/Setting.jsx -------------------------------------------------------------------------------- /src/components/SettingButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/SettingButton.jsx -------------------------------------------------------------------------------- /src/components/StyledButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/StyledButton.jsx -------------------------------------------------------------------------------- /src/components/Tip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/Tip.jsx -------------------------------------------------------------------------------- /src/components/animates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/animates.js -------------------------------------------------------------------------------- /src/components/snow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/components/snow.ts -------------------------------------------------------------------------------- /src/containers/Aside.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/containers/Aside.jsx -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/useSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/useSetting.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/src/utils.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerosoul/life-progress/HEAD/vite.config.js --------------------------------------------------------------------------------