Update src/app/about/page.tsx

This commit is contained in:
2026-03-23 19:00:03 +00:00
parent 11c4225db0
commit bd5461be9b

View File

@@ -7,7 +7,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import { Shield, Truck, Users } from "lucide-react";
import { Shield, Truck, Users, Handshake, Twitter, Linkedin } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,30 +28,15 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "about",
href: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "services",
href: "#services",
},
name: "Services", id: "#services"},
{
name: "Careers",
id: "careers",
href: "/careers",
},
name: "Careers", id: "/careers"},
{
name: "Contact",
id: "contact",
href: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Charlotte Bay Trading Co."
/>
@@ -66,24 +51,16 @@ export default function LandingPage() {
description="Since our founding, Charlotte Bay Trading Co. has been dedicated to delivering superior logistics solutions across the Carolinas and beyond. We combine cutting-edge technology with an unwavering commitment to customer satisfaction and a deep respect for our driving professionals. Our mission is to move your business forward with dependable, efficient, and transparent freight services."
bulletPoints={[
{
title: "Safety First",
description: "Prioritizing the well-being of our team, cargo, and community through rigorous safety protocols and continuous training.",
icon: Shield,
title: "Safety First", description: "Prioritizing the well-being of our team, cargo, and community through rigorous safety protocols and continuous training.", icon: Shield,
},
{
title: "Integrity & Transparency",
description: "Operating with honesty and clear communication, building lasting relationships based on trust with every client and employee.",
icon: Handshake,
title: "Integrity & Transparency", description: "Operating with honesty and clear communication, building lasting relationships based on trust with every client and employee.", icon: Handshake,
},
{
title: "Customer-Centric",
description: "Tailoring solutions to meet unique client needs, ensuring flexibility and responsiveness to exceed expectations.",
icon: Users,
title: "Customer-Centric", description: "Tailoring solutions to meet unique client needs, ensuring flexibility and responsiveness to exceed expectations.", icon: Users,
},
{
title: "Driver Empowerment",
description: "Fostering a supportive environment where our drivers are valued, respected, and equipped for success on every route.",
icon: Truck,
title: "Driver Empowerment", description: "Fostering a supportive environment where our drivers are valued, respected, and equipped for success on every route.", icon: Truck,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-checking-document_23-2149426479.jpg"
@@ -99,20 +76,14 @@ export default function LandingPage() {
description="Our commitment to efficiency, safety, and driver satisfaction defines our daily operations and long-term vision. We are proud of the achievements that reflect our dedication to seamless logistics."
metrics={[
{
value: "99.8%",
title: "On-Time Delivery",
},
value: "99.8%", title: "On-Time Delivery"},
{
value: "2M+",
title: "Miles Safely Driven",
},
value: "2M+", title: "Miles Safely Driven"},
{
value: "Top 1%",
title: "Driver Retention",
},
value: "Top 1%", title: "Driver Retention"},
]}
tag="Our Impact"
imageSrc="http://img.b2bpic.net/free-photo/african-american-worker-discussing-products-checklist_482257-108833.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/african-american-worker-discussing-products-checklist_482257-108833.jpg"
imageAlt="Truck delivering a package on time, driver smiling"
mediaAnimation="blur-reveal"
metricsAnimation="blur-reveal"
@@ -126,6 +97,18 @@ export default function LandingPage() {
title="Meet the Charlotte Bay Family"
description="Our dedicated team of professionals drives our success and commitment to service excellence. We believe in fostering a collaborative environment where everyone thrives, from the front office to the open road."
tag="Our People"
team={[
{
name: "John Doe", role: "CEO & Founder", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-looking-camera-with-confidence_23-2148943642.jpg", imageAlt: "Portrait of John Doe, CEO", socialLinks: [{ icon: Twitter, href: "#" }, { icon: Linkedin, href: "#" }]
},
{
name: "Jane Smith", role: "Operations Director", imageSrc: "http://img.b2bpic.net/free-photo/waist-up-portrait-pretty-middle-aged-brunette-woman-with-frizzly-hair-smiling_176420-19106.jpg", imageAlt: "Portrait of Jane Smith, Operations Director", socialLinks: [{ icon: Linkedin, href: "#" }]
},
{
name: "Robert Johnson", role: "Lead Driver Manager", imageSrc: "http://img.b2bpic.net/free-photo/worker-white-uniform_1157-19446.jpg", imageAlt: "Portrait of Robert Johnson, Lead Driver Manager", socialLinks: [{ icon: Twitter, href: "#" }]
}
]}
animationType="slide-up"
/>
</div>
@@ -133,54 +116,33 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Regional Trucking",
href: "/services",
},
label: "Regional Trucking", href: "/services"},
{
label: "Dedicated Freight",
href: "/services",
},
label: "Dedicated Freight", href: "/services"},
{
label: "Contract Logistics",
href: "/services",
},
label: "Contract Logistics", href: "/services"},
{
label: "Time-Sensitive Loads",
href: "/services",
},
label: "Time-Sensitive Loads", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Careers",
href: "/careers",
},
label: "Careers", href: "/careers"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy",
},
label: "Privacy Policy", href: "/privacy"},
{
label: "Terms of Service",
href: "/terms",
},
label: "Terms of Service", href: "/terms"},
],
},
]}