101 lines
3.2 KiB
TypeScript
101 lines
3.2 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 AdminAnalyticsDashboardPage() {
|
|
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="analytics-dashboard" data-section="analytics-dashboard">
|
|
<ContactCTA
|
|
tag="Admin Panel"
|
|
title="Analytics Dashboard"
|
|
description="Gain insights into platform performance with key metrics on user activity, job postings, applications, and revenue."
|
|
buttons={[
|
|
{ text: "View Analytics", href: "#" },
|
|
{ text: "Generate Custom Report", 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>
|
|
);
|
|
}
|