Update src/app/careers/page.tsx

This commit is contained in:
2026-03-27 07:40:05 +00:00
parent 449b02f1b1
commit 284548273d

View File

@@ -2,13 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import { Facebook, Instagram, Twitter, ChevronRight } from "lucide-react";
export default function LandingPage() {
export default function CareersPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -23,144 +22,45 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Why Choose Us",
id: "/about",
},
{
name: "Careers",
id: "/careers",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="AXEN EXPRESS"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Why Choose Us", id: "/why-choose-us" },
{ name: "Careers", id: "/careers" },
{ name: "Contact", id: "/contact" },
]}
brandName="AXEN EXPRESS"
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
members={[
{
id: "1",
name: "Sarah Jenkins",
role: "Logistics Coordinator",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWFWxJy9IxLHihXNXgeItzuwF3/group-of-professional-logistics-workers--1774597054556-4052268a.png?_wi=1",
},
{
id: "2",
name: "Mark Sterling",
role: "Fleet Manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWFWxJy9IxLHihXNXgeItzuwF3/professional-heavy-duty-freight-cargo-tr-1774597055935-989ee868.png?_wi=2",
},
{
id: "3",
name: "Elena Rodriguez",
role: "Supply Chain Analyst",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWFWxJy9IxLHihXNXgeItzuwF3/a-large-cargo-container-being-loaded-ont-1774597054045-d66a6ea3.png?_wi=1",
},
]}
title="Join the Axen Express Team"
description="We are looking for passionate professionals to help us redefine the future of logistics and global freight."
/>
</div>
<div id="careers" data-section="careers">
<FeatureCardTwentySix
title="Build Your Future at Axen Express"
description="We're looking for passionate individuals to join our team and help us shape the future of logistics in East Africa."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Professional Driver", description: "Drive our modern fleet and ensure safe transport for our clients.", buttonIcon: ChevronRight },
{ title: "Logistics Coordinator", description: "Manage complex routes and communication across our regional network.", buttonIcon: ChevronRight },
{ title: "Operations Manager", description: "Oversee daily operations and team performance in our logistics hubs.", buttonIcon: ChevronRight }
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardEight
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Competitive Benefits",
description: "Industry-leading health coverage, retirement planning, and paid time off to ensure you and your family are taken care of.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWFWxJy9IxLHihXNXgeItzuwF3/group-of-professional-logistics-workers--1774597054556-4052268a.png?_wi=2",
},
{
id: 2,
title: "Growth Opportunities",
description: "We invest in your professional development with training programs, certifications, and clear career progression paths.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWFWxJy9IxLHihXNXgeItzuwF3/a-large-cargo-container-being-loaded-ont-1774597054045-d66a6ea3.png?_wi=2",
},
]}
title="Why Work With Us?"
description="At Axen Express, we believe in empowering our employees through continuous growth and a supportive environment."
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "Do you offer remote work opportunities?",
content: "Yes, for many of our corporate and analyst roles, we provide flexible hybrid work arrangements.",
},
{
id: "2",
title: "How can I apply for an open position?",
content: "Simply browse our current openings, upload your resume, and fill out our online application form.",
},
]}
title="Frequently Asked Questions"
description="Everything you need to know about starting your career with the leader in freight logistics."
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Careers",
href: "/careers",
},
],
},
{
title: "Resources",
items: [
{
label: "Support",
href: "/contact",
},
{
label: "Privacy Policy",
href: "/privacy",
},
],
},
]}
copyrightText="© 2025 | Axen Express"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="AXEN EXPRESS"
copyrightText="© 2025 AXEN EXPRESS TRANSPORTATION"
socialLinks={[
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}