102 lines
3.3 KiB
TypeScript
102 lines
3.3 KiB
TypeScript
"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 AdminContentModerationPage() {
|
|
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 = [
|
|
{
|
|
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="content-moderation" data-section="content-moderation">
|
|
<ContactCTA
|
|
tag="Admin Panel"
|
|
title="Content Moderation"
|
|
description="Ensure platform integrity by reviewing and moderating job postings, resumes, and user-generated content."
|
|
buttons={[
|
|
{ text: "Review Content", href: "#" },
|
|
{ text: "Flagged Items", href: "#" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
logoText="JobGeorgia"
|
|
columns={footerColumns}
|
|
copyrightText="© 2024 JobGeorgia. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|