Add src/app/admin/employer-approval/page.tsx
This commit is contained in:
100
src/app/admin/employer-approval/page.tsx
Normal file
100
src/app/admin/employer-approval/page.tsx
Normal file
@@ -0,0 +1,100 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
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 footerColumns = [
|
||||
{
|
||||
title: "Platform", items: [
|
||||
{ label: "Job Seekers", href: "/#features" },
|
||||
{ label: "Employers", href: "/#features" },
|
||||
{ label: "Recruiters", href: "/#features" },
|
||||
{ label: "AI Features", href: "/#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Featured Jobs", href: "/#jobs" },
|
||||
{ label: "Featured Companies", href: "/#companies" },
|
||||
{ label: "Pricing Plans", href: "/#pricing" },
|
||||
{ label: "FAQ", href: "/#faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Contact Us", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="fluid"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="JobGeorgia"
|
||||
button={{ text: "Get Started", href: "/#pricing" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="employer-approval" data-section="employer-approval">
|
||||
<ContactCTA
|
||||
tag="Admin Panel"
|
||||
title="Employer Approval"
|
||||
description="Streamline the employer onboarding process. Review, approve, or reject new employer applications efficiently."
|
||||
buttons={[
|
||||
{ text: "Review Applications", href: "#" },
|
||||
{ text: "View Approved Employers", href: "#" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="JobGeorgia"
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2024 JobGeorgia. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user