Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-06-07 06:00:48 +00:00
2 changed files with 27 additions and 24 deletions

View File

@@ -7,16 +7,16 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function AdminEmployerApprovalPage() {
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 = [
{
@@ -78,12 +78,13 @@ export default function AdminEmployerApprovalPage() {
<ContactCTA
tag="Admin Panel"
title="Employer Approval"
description="Streamline the employer onboarding process. Review, approve, or reject new employer applications efficiently."
description="Review and approve employer accounts, ensuring compliance with platform standards and legal requirements."
buttons={[
{ text: "Review Applications", href: "#" },
{ text: "View Approved Employers", href: "#" },
{ text: "Review Employers", href: "#" },
{ text: "Approved Employers", href: "#" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>

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>