Update src/app/admin/user-management/page.tsx
This commit is contained in:
@@ -7,15 +7,16 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
|
||||
export default function AdminUserManagementPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "Features", href: "/#features" }, { name: "Jobs", href: "/#jobs" },
|
||||
{ name: "Companies", href: "/#companies" },
|
||||
{ name: "Pricing", href: "/#pricing" },
|
||||
{ name: "Reviews", href: "/#testimonials" },
|
||||
{ name: "FAQ", href: "/#faq" },
|
||||
{ name: "Admin", href: "/admin/user-management" }
|
||||
];
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Jobs", id: "/#jobs" },
|
||||
{ name: "Companies", id: "/#companies" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
{ name: "Reviews", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Admin", id: "/admin/user-management" }
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
@@ -77,12 +78,13 @@ export default function AdminUserManagementPage() {
|
||||
<ContactCTA
|
||||
tag="Admin Panel"
|
||||
title="User Management"
|
||||
description="Effortlessly manage all platform users. View profiles, update roles, and handle account statuses with powerful administrative tools."
|
||||
description="Oversee and manage user accounts, including editing profiles, resetting passwords, and handling suspensions."
|
||||
buttons={[
|
||||
{ text: "View Users", href: "#" },
|
||||
{ text: "Add New User", href: "#" },
|
||||
{ text: "Manage Roles", href: "#" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user