Initial commit

This commit is contained in:
dk
2026-03-02 21:19:54 +00:00
commit 5bf09382ed
632 changed files with 84118 additions and 0 deletions

174
src/app/employers/page.tsx Normal file
View File

@@ -0,0 +1,174 @@
"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, Users, TrendingUp, 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 EmployersPage() {
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="employer-intro" data-section="employer-intro">
<SplitAbout
title="Hiring for Your Business"
description="Access pre-vetted talent, save recruitment time, and build stronger teams. Aptus handles the hard work of finding and screening candidates so you can focus on growing your business."
tag="For Employers"
tagAnimation="opacity"
bulletPoints={[
{
title: "Access Pre-Vetted Candidates",
description: "Browse our database of thoroughly screened professionals ready to work",
icon: CheckCircle,
},
{
title: "Save Time on Recruitment",
description: "We handle sourcing, screening, and initial interviews - you focus on final selection",
icon: Zap,
},
{
title: "Reduce Hiring Risk",
description: "Background checks, skills testing, and reference verification included",
icon: Users,
},
]}
imagePosition="right"
textboxLayout="default"
useInvertedBackground={false}
mediaAnimation="slide-up"
buttons={[{ text: "Post a Vacancy", href: "/contact" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="employer-benefits" data-section="employer-benefits">
<FeatureCardTwentyThree
title="Why Partner With Aptus?"
description="We make hiring faster, easier, and more effective for employers across Devon"
tag="Employer Benefits"
features={[
{
id: "1",
title: "Fast Placements",
tags: ["5-7 Days", "Quick Results"],
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Fast recruitment process",
},
{
id: "2",
title: "Local Market Knowledge",
tags: ["Exeter Expertise", "Devon Understanding"],
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Local market expertise",
},
{
id: "3",
title: "Flexible Staffing Options",
tags: ["Permanent", "Temporary", "Contract"],
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Flexible staffing solutions",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
tagAnimation="opacity"
/>
</div>
<div id="employer-process" data-section="employer-process">
<SplitAbout
title="Simple Hiring Process"
description="From vacancy to placement in just a few steps. We handle the recruitment complexity so you get back to business."
tag="How It Works"
tagAnimation="opacity"
bulletPoints={[
{
title: "Post Your Vacancy",
description: "Tell us about the role, requirements, and your ideal candidate profile",
icon: CheckCircle,
},
{
title: "Review Candidates",
description: "We present pre-screened candidates who match your needs perfectly",
icon: Users,
},
{
title: "Successful Placement",
description: "Make your selection and we handle onboarding and 30-day support",
icon: TrendingUp,
},
]}
imagePosition="left"
textboxLayout="default"
useInvertedBackground={false}
mediaAnimation="slide-up"
buttons={[{ text: "Start Now", 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>
);
}