├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── index.html └── logo-1.svg ├── src ├── App.js ├── Context │ └── AppContext.js ├── assets │ ├── ControlSidebar.svg │ ├── SidebarToggler.svg │ └── logo-1.svg ├── components │ ├── Analytics │ │ ├── Analytics.jsx │ │ ├── Pagination.jsx │ │ └── Table.jsx │ ├── Home │ │ ├── Badge.jsx │ │ ├── Chart.jsx │ │ ├── ExpenseForm.jsx │ │ ├── Home.jsx │ │ └── Transactions.jsx │ └── Sidebar │ │ ├── Budget.jsx │ │ ├── Logo.jsx │ │ ├── Nav.jsx │ │ ├── Navs.jsx │ │ └── Sidebar.jsx ├── index.css ├── index.js ├── style.css └── styles │ ├── styling.css │ └── twStyles.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/public/logo-1.svg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Context/AppContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/Context/AppContext.js -------------------------------------------------------------------------------- /src/assets/ControlSidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/assets/ControlSidebar.svg -------------------------------------------------------------------------------- /src/assets/SidebarToggler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/assets/SidebarToggler.svg -------------------------------------------------------------------------------- /src/assets/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/assets/logo-1.svg -------------------------------------------------------------------------------- /src/components/Analytics/Analytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Analytics/Analytics.jsx -------------------------------------------------------------------------------- /src/components/Analytics/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Analytics/Pagination.jsx -------------------------------------------------------------------------------- /src/components/Analytics/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Analytics/Table.jsx -------------------------------------------------------------------------------- /src/components/Home/Badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Home/Badge.jsx -------------------------------------------------------------------------------- /src/components/Home/Chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Home/Chart.jsx -------------------------------------------------------------------------------- /src/components/Home/ExpenseForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Home/ExpenseForm.jsx -------------------------------------------------------------------------------- /src/components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Home/Home.jsx -------------------------------------------------------------------------------- /src/components/Home/Transactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Home/Transactions.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Budget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Sidebar/Budget.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Sidebar/Logo.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Sidebar/Nav.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Navs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Sidebar/Navs.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/components/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/style.css -------------------------------------------------------------------------------- /src/styles/styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/styles/styling.css -------------------------------------------------------------------------------- /src/styles/twStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/src/styles/twStyles.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YusufLisawi/Budgie/HEAD/yarn.lock --------------------------------------------------------------------------------