dashboard update added
This commit was merged in pull request #47.
This commit is contained in:
@@ -89,11 +89,7 @@ export default function RecentBVNList({
|
||||
<div className="w-full h-100 d-flex gap-4 justify-content-center align-items-end">
|
||||
<button
|
||||
onClick={handlePrev}
|
||||
className={`text-sm md:text-lg d-flex justify-content-center align-items-center border-1 transition-all duration-300 ${
|
||||
currentPage == 0
|
||||
? "text-slate-400 border-slate-400 dark:text-slate-400 dark:border-slate-400 pe-none"
|
||||
: "text-slate-600 border-slate-600 dark:text-white dark:border-white"
|
||||
}`}
|
||||
className={`btn btn-primary `}
|
||||
disabled={currentPage == 0}
|
||||
// style={{width:'30px', height:'30px'}}
|
||||
>
|
||||
@@ -123,11 +119,7 @@ export default function RecentBVNList({
|
||||
|
||||
<button
|
||||
onClick={handleNext}
|
||||
className={`text-sm md:text-lg d-flex justify-content-center align-items-center border-1 transition-all duration-300 ${
|
||||
currentPage + numberOfSelection >= data.length
|
||||
? "text-slate-400 border-slate-400 dark:text-slate-400 dark:border-slate-400 pe-none"
|
||||
: "text-slate-600 border-slate-600 dark:text-white dark:border-white"
|
||||
}`}
|
||||
className={`btn btn-primary`}
|
||||
disabled={currentPage + numberOfSelection >= data.length}
|
||||
// style={{width:'30px', height:'30px'}}
|
||||
>
|
||||
|
||||
@@ -105,9 +105,9 @@ const SidebarMenuMain = () => {
|
||||
</SidebarMenuItemWithSub> */}
|
||||
|
||||
<SidebarMenuItem
|
||||
to='/tools/user-management/users'
|
||||
to='/tools/user-management/customers'
|
||||
icon='abstract-28'
|
||||
title='User management'
|
||||
title='Customers'
|
||||
fontIcon='bi-layers'
|
||||
/>
|
||||
|
||||
@@ -141,6 +141,18 @@ const SidebarMenuMain = () => {
|
||||
{/* <span className='menu-title'>Changelog {import.meta.env.VITE_APP_VERSION}</span>*/}
|
||||
{/* </a>*/}
|
||||
{/*</div>*/}
|
||||
|
||||
<div className='menu-item'>
|
||||
<div className='menu-content pt-8 pb-2'>
|
||||
<span className='menu-section text-muted text-uppercase fs-8 ls-1'>Admin</span>
|
||||
</div>
|
||||
</div>
|
||||
<SidebarMenuItem
|
||||
to='/tools/user-management/users'
|
||||
icon='abstract-28'
|
||||
title='Users'
|
||||
fontIcon='bi-layers'
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user