Update src/app/admin/employer-approval/page.tsx

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

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>