From c1bbc8d6ee28f6d4a4c87acad9b0858773003556 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 19:10:11 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2d78537..97eb818 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -99,13 +99,13 @@ export default function LandingPage() { 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" + id: "john-doe", 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" }, { - 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" + id: "jane-smith", 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" }, { - 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" + id: "robert-johnson", 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" } ]} animationType="slide-up" -- 2.49.1 From c7d53a762928a2cf882358a90362f585b1054a47 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 19:10:12 +0000 Subject: [PATCH 2/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 121 ++++++++++----------------------------- 1 file changed, 30 insertions(+), 91 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2a98e5c..7d7086c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -27,30 +27,20 @@ export default function LandingPage() { @@ -63,33 +53,19 @@ export default function LandingPage() { description="Our team is ready to assist you with any inquiries regarding logistics services, partnerships, or general questions. Fill out the form below, and we'll get back to you promptly." inputs={[ { - name: "name", - type: "text", - placeholder: "Your Name", - required: true, + name: "name", type: "text", placeholder: "Your Name", required: true, }, { - name: "email", - type: "email", - placeholder: "Your Email", - required: true, + name: "email", type: "email", placeholder: "Your Email", required: true, }, { - name: "phone", - type: "tel", - placeholder: "Phone Number (Optional)", - }, + name: "phone", type: "tel", placeholder: "Phone Number (Optional)"}, { - name: "subject", - type: "text", - placeholder: "Subject", - required: true, + name: "subject", type: "text", placeholder: "Subject", required: true, }, ]} textarea={{ - name: "message", - placeholder: "Your Message", - rows: 5, + name: "message", placeholder: "Your Message", rows: 5, required: true, }} imageSrc="http://img.b2bpic.net/free-photo/laborers-preparing-warehouse-shipping_482257-75296.jpg?_wi=4" @@ -105,39 +81,23 @@ export default function LandingPage() { useInvertedBackground={true} faqs={[ { - id: "1", - title: "What regions do you serve?", - content: "We primarily offer regional transport services across the Southeast US, including North Carolina, South Carolina, Georgia, and Virginia, with strategic routes extending further based on client needs.", - }, + id: "1", title: "What regions do you serve?", content: "We primarily offer regional transport services across the Southeast US, including North Carolina, South Carolina, Georgia, and Virginia, with strategic routes extending further based on client needs."}, { - id: "2", - title: "How do I get a freight quote?", - content: "You can request a freight quote directly through our website's contact form, or by calling our sales team at the number provided. We typically respond within one business day.", - }, + id: "2", title: "How do I get a freight quote?", content: "You can request a freight quote directly through our website's contact form, or by calling our sales team at the number provided. We typically respond within one business day."}, { - id: "3", - title: "Do you offer dedicated fleet services?", - content: "Yes, we provide dedicated fleet solutions tailored to your specific requirements, ensuring consistent capacity, optimized routes, and priority service for your business.", - }, + id: "3", title: "Do you offer dedicated fleet services?", content: "Yes, we provide dedicated fleet solutions tailored to your specific requirements, ensuring consistent capacity, optimized routes, and priority service for your business."}, { - id: "4", - title: "What makes Charlotte Bay Trading Co. different?", - content: "Our commitment to a 'driver-first' culture, combined with advanced technology, transparent communication, and a relentless focus on reliability, sets us apart in delivering exceptional logistics experiences.", - }, + id: "4", title: "What makes Charlotte Bay Trading Co. different?", content: "Our commitment to a 'driver-first' culture, combined with advanced technology, transparent communication, and a relentless focus on reliability, sets us apart in delivering exceptional logistics experiences."}, { - id: "5", - title: "Are you hiring?", - content: "Absolutely! We're always looking for talented and dedicated drivers and logistics professionals to join our growing team. Please visit our Careers page to view current openings and submit an application.", - }, + id: "5", title: "Are you hiring?", content: "Absolutely! We're always looking for talented and dedicated drivers and logistics professionals to join our growing team. Please visit our Careers page to view current openings and submit an application."}, ]} ctaTitle="Need Immediate Assistance?" ctaDescription="Our dedicated support team is here to help with urgent inquiries, direct discussions, or specific service questions. Don't hesitate to reach out." ctaButton={{ - text: "Call Our Experts", - href: "tel:+18005550199", - }} + text: "Call Our Experts", href: "tel:+18005550199"}} ctaIcon={Phone} accordionAnimationType="smooth" + animationType="slide-up" /> @@ -145,54 +105,33 @@ export default function LandingPage() {