diff --git a/README.md b/README.md index 1e77ec5..fea3205 100644 --- a/README.md +++ b/README.md @@ -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 ```