Update README.md

This commit is contained in:
2025-10-26 22:24:18 +03:30
parent 0355898ad1
commit 7633516e53

View File

@@ -1,5 +1,4 @@
For testing purposes, you can use these demo credentials: For testing purposes, you can use these demo credentials:
- **Email**: admin@example.com - **Email**: admin@example.com
- **Password**: password - **Password**: password
@@ -9,20 +8,20 @@ For testing purposes, you can use these demo credentials:
``` ```
src// src//
├── components/ ├── components/
│ ├── Navbar.jsx # Top navigation with dark mode toggle │ ├── Navbar.jsx
│ ├── Sidebar.jsx # Collapsible sidebar navigation │ ├── Sidebar.jsx
│ └── DataTable.jsx # Reusable table component │ └── DataTable.jsx
├── pages/ ├── pages/
│ ├── Dashboard.jsx # Main dashboard with stats and charts │ ├── Dashboard.jsx
│ ├── Transactions.jsx # Payment transactions table │ ├── Transactions.jsx
│ ├── Settings.jsx # Configuration settings │ ├── Settings.jsx
│ └── Login.jsx # Authentication page │ └── Login.jsx
├── context/ ├── context/
│ └── AuthContext.jsx # Authentication state management │ └── AuthContext.jsx
├── services/ ├── services/
│ └── api.js # Axios configuration and API calls │ └── api.js
├── App.jsx # Main app component with routing ├── App.jsx
├── main.jsx # App entry point ├── main.jsx
└── index.css # TailwindCSS imports and custom styles └── index.css
``` ```