Add src/app/recruiter-system/page.tsx
This commit is contained in:
128
src/app/recruiter-system/page.tsx
Normal file
128
src/app/recruiter-system/page.tsx
Normal file
@@ -0,0 +1,128 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Search, Database, Mail, Megaphone } from 'lucide-react';
|
||||
|
||||
export default function RecruiterSystemPage() {
|
||||
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={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
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: "Recruiter API", id: "/recruiter-system"}
|
||||
]}
|
||||
brandName="JobGeorgia"
|
||||
button={{
|
||||
text: "Get Started", href: "#pricing"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="recruiter-api" data-section="recruiter-api">
|
||||
<SplitAbout
|
||||
title="Recruiter System API Endpoints"
|
||||
description="A comprehensive set of API endpoints designed to empower recruiters with robust tools for candidate management and recruitment campaign execution."
|
||||
tag="API Documentation"
|
||||
bulletPoints={[
|
||||
{ title: "Search Candidates", description: "Efficiently search and filter candidates based on skills, experience, location, and other criteria.", icon: Search },
|
||||
{ title: "Access Candidate Database", description: "Securely access and manage a centralized database of candidate profiles, resumes, and interaction history.", icon: Database },
|
||||
{ title: "Contact Candidates", description: "Facilitate direct communication with candidates through integrated messaging and email functionalities.", icon: Mail },
|
||||
{ title: "Manage Recruitment Campaigns", description: "Create, track, and optimize recruitment campaigns, including job posting distribution and performance analytics.", icon: Megaphone }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/code-icon-laptop-screen_53876-146609.jpg"
|
||||
imageAlt="Recruiter System API documentation"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="left"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="JobGeorgia"
|
||||
columns={[
|
||||
{
|
||||
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: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 JobGeorgia. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user