Enhance Admin Dashboard and Members Directory with improved layout, pagination, and member details display.

Applied requested changes to UI
This commit is contained in:
2026-01-06 12:05:34 -06:00
parent 968eaccac2
commit 8011913c4d
6 changed files with 377 additions and 285 deletions

View File

@@ -118,7 +118,7 @@ const AdminStaff = () => {
const getStatusBadge = (status) => {
const config = {
active: { label: 'Active', className: 'bg-[#81B29A] text-white' },
inactive: { label: 'Inactive', className: 'bg-gray-400 text-white' }
inactive: { label: 'Inactive', className: 'bg-gray-400 text-white ' }
};
const statusConfig = config[status] || config.inactive;