├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── WHAT-NEXT.md ├── data └── db.json ├── dist ├── assets │ ├── index-CB_-q8St.js │ ├── index-CqJu2Rdt.css │ ├── index-DI4XG_L9.js │ └── index-fORz-Mo6.css ├── index.html └── logo.png ├── docker-compose.yml ├── index.html ├── logo.png ├── metadata.json ├── package.json ├── postcss.config.js ├── public └── logo.png ├── screenshots ├── archive.png ├── debt.png ├── faot.png ├── homedark.png ├── homedark01.png ├── homedark02.png ├── homelight.png ├── loan.png ├── logo.png ├── logo │ ├── iconhq.png │ ├── logo.png │ ├── logo.svg │ └── logohq.png └── settings.png ├── server.js ├── src ├── App.tsx ├── components │ ├── AmortizationSchedule.tsx │ ├── Archive.tsx │ ├── Dashboard.tsx │ ├── Debts.tsx │ ├── Header.tsx │ ├── Loans.tsx │ ├── PaymentModal.tsx │ ├── Savings.tsx │ ├── UpdateNotification.tsx │ ├── Version.tsx │ └── common │ │ ├── Card.tsx │ │ ├── Icons.tsx │ │ ├── Modal.tsx │ │ └── ProgressBar.tsx ├── index.css ├── main.tsx ├── types.ts └── utils │ ├── amortization.ts │ ├── currency.ts │ ├── recurrence.ts │ └── version.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.js └── vite.config.ts /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/README.md -------------------------------------------------------------------------------- /WHAT-NEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/WHAT-NEXT.md -------------------------------------------------------------------------------- /data/db.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/assets/index-CB_-q8St.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/assets/index-CB_-q8St.js -------------------------------------------------------------------------------- /dist/assets/index-CqJu2Rdt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/assets/index-CqJu2Rdt.css -------------------------------------------------------------------------------- /dist/assets/index-DI4XG_L9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/assets/index-DI4XG_L9.js -------------------------------------------------------------------------------- /dist/assets/index-fORz-Mo6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/assets/index-fORz-Mo6.css -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/dist/logo.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/logo.png -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/metadata.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/public/logo.png -------------------------------------------------------------------------------- /screenshots/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/archive.png -------------------------------------------------------------------------------- /screenshots/debt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/debt.png -------------------------------------------------------------------------------- /screenshots/faot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/faot.png -------------------------------------------------------------------------------- /screenshots/homedark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/homedark.png -------------------------------------------------------------------------------- /screenshots/homedark01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/homedark01.png -------------------------------------------------------------------------------- /screenshots/homedark02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/homedark02.png -------------------------------------------------------------------------------- /screenshots/homelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/homelight.png -------------------------------------------------------------------------------- /screenshots/loan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/loan.png -------------------------------------------------------------------------------- /screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/logo.png -------------------------------------------------------------------------------- /screenshots/logo/iconhq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/logo/iconhq.png -------------------------------------------------------------------------------- /screenshots/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/logo/logo.png -------------------------------------------------------------------------------- /screenshots/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/logo/logo.svg -------------------------------------------------------------------------------- /screenshots/logo/logohq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/logo/logohq.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/server.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AmortizationSchedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/AmortizationSchedule.tsx -------------------------------------------------------------------------------- /src/components/Archive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Archive.tsx -------------------------------------------------------------------------------- /src/components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Dashboard.tsx -------------------------------------------------------------------------------- /src/components/Debts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Debts.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Loans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Loans.tsx -------------------------------------------------------------------------------- /src/components/PaymentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/PaymentModal.tsx -------------------------------------------------------------------------------- /src/components/Savings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Savings.tsx -------------------------------------------------------------------------------- /src/components/UpdateNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/UpdateNotification.tsx -------------------------------------------------------------------------------- /src/components/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/Version.tsx -------------------------------------------------------------------------------- /src/components/common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/common/Card.tsx -------------------------------------------------------------------------------- /src/components/common/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/common/Icons.tsx -------------------------------------------------------------------------------- /src/components/common/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/common/Modal.tsx -------------------------------------------------------------------------------- /src/components/common/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/components/common/ProgressBar.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/amortization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/utils/amortization.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/recurrence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/utils/recurrence.ts -------------------------------------------------------------------------------- /src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/src/utils/version.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/vite.config.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamzamix/LoanDash/HEAD/vite.config.ts --------------------------------------------------------------------------------