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