Files
9f68240e-f626-4f0d-99cb-d1b…/src/app/candidates/page.tsx

174 lines
6.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { CheckCircle, Heart, Users, Zap } from "lucide-react";
const navItems = [
{ name: "Services", id: "services" },
{ name: "Why Us", id: "why-us" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
];
export default function CandidatesPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Call Now", href: "tel:+441392000000" }}
brandName="Aptus"
/>
</div>
<div id="candidate-intro" data-section="candidate-intro">
<SplitAbout
title="Find Your Next Opportunity"
description="Looking for your next career move? Aptus connects talented professionals like you with employers offering exciting roles that match your skills, experience, and ambitions."
tag="For Candidates"
tagAnimation="opacity"
bulletPoints={[
{
title: "Access Quality Roles",
description: "Browse vacancies across Exeter and Devon with transparent information about each position",
icon: CheckCircle,
},
{
title: "Expert Guidance",
description: "Our recruitment consultants understand your career goals and work to find the right fit",
icon: Heart,
},
{
title: "Supportive Process",
description: "From application through interview preparation to placement support, we're with you",
icon: Users,
},
]}
imagePosition="right"
textboxLayout="default"
useInvertedBackground={false}
mediaAnimation="slide-up"
buttons={[{ text: "Submit Your CV", href: "/contact" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="candidate-benefits" data-section="candidate-benefits">
<FeatureCardTwentyThree
title="Why Work With Aptus?"
description="We're committed to finding roles that truly match your skills, values, and career aspirations"
tag="Candidate Advantages"
features={[
{
id: "1",
title: "Personalized Job Matching",
tags: ["Career Fit", "Skills Alignment"],
imageSrc: "/placeholders/placeholder1.webp?_wi=13",
imageAlt: "Job matching service",
},
{
id: "2",
title: "Interview Preparation Support",
tags: ["Coaching", "Company Insights"],
imageSrc: "/placeholders/placeholder1.webp?_wi=14",
imageAlt: "Interview coaching",
},
{
id: "3",
title: "Roles in Growing Sectors",
tags: ["Tech", "Healthcare", "Finance"],
imageSrc: "/placeholders/placeholder1.webp?_wi=15",
imageAlt: "Diverse sector opportunities",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
tagAnimation="opacity"
/>
</div>
<div id="candidate-process" data-section="candidate-process">
<SplitAbout
title="Your Journey With Aptus"
description="From application to your first day at your new role. We support you at every step."
tag="The Process"
tagAnimation="opacity"
bulletPoints={[
{
title: "Submit Your CV & Profile",
description: "Tell us about your experience, skills, and career goals",
icon: CheckCircle,
},
{
title: "Get Matched to Opportunities",
description: "We review vacancies and present the best roles for your profile",
icon: Zap,
},
{
title: "Complete & Celebrate",
description: "Interview support, offer negotiation, and onboarding assistance included",
icon: Heart,
},
]}
imagePosition="left"
textboxLayout="default"
useInvertedBackground={false}
mediaAnimation="slide-up"
buttons={[{ text: "Get Started", href: "/contact" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="APTUS"
columns={[
{
items: [
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "For Employers", href: "/employers" },
{ label: "For Candidates", href: "/candidates" },
],
},
{
items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
],
},
{
items: [
{ label: "Email", href: "mailto:hello@aptusrecruitment.co.uk" },
{ label: "Phone", href: "tel:+441392000000" },
{ label: "Address", href: "#" },
{ label: "Exeter, Devon", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}