Update src/app/admin/user-management/page.tsx

This commit is contained in:
2026-06-07 06:00:45 +00:00
parent defe3dc8ab
commit a1db1beb1e

View File

@@ -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>