3 Commits

Author SHA1 Message Date
25bc410c4d Update src/app/page.tsx 2026-04-22 00:55:53 +00:00
bcbd92ddfc Merge version_1 into main
Merge version_1 into main
2026-04-22 00:46:11 +00:00
196e6357f4 Merge version_1 into main
Merge version_1 into main
2026-04-22 00:45:45 +00:00

View File

@@ -12,7 +12,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { FileText, Package, Truck } from "lucide-react";
import { FileText, Package, Truck, MessageSquare, Briefcase, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -124,8 +124,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={["CargoTrans", "GlobalFlow", "NetShip", "FastTrack", "OrbitLogistic", "Core Freight", "Prime Delivery"]}
title="Trusted by Industry Leaders"
description="Collaborating with global enterprises to solve logistics challenges."
title="Trusted by Leading Logistics Partners"
description="Our partner network spans the entire global supply chain ecosystem."
tag="Strategic Alliances"
tagIcon={Briefcase}
/>
</div>
@@ -135,13 +137,13 @@ export default function LandingPage() {
testimonials={[
{ id: "1", name: "Alex Rivers", imageSrc: "http://img.b2bpic.net/free-photo/closeup-serious-business-leader-sitting_1262-4831.jpg" },
{ id: "2", name: "Maria Chen", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12778.jpg" },
{ id: "3", name: "Samuel Okoro", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4750.jpg" },
{ id: "4", name: "Elena Rossi", imageSrc: "http://img.b2bpic.net/free-photo/paralysed-disabled-invalid-handicapped-work-colleague-looking-front-tired-upset-caused-his-disabilities-working-economic-business-office_482257-2084.jpg" },
{ id: "5", name: "Tom Baker", imageSrc: "http://img.b2bpic.net/free-photo/focused-plant-manager-hardhat-walking-warehouse-talking-cellphone_74855-16380.jpg" }
{ id: "3", name: "Samuel Okoro", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4750.jpg" }
]}
cardTitle="What Our Partners Say"
cardTag="Testimonials"
cardTitle="Client Success Stories"
cardTag="Logistics Excellence"
cardTagIcon={Zap}
cardAnimation="slide-up"
buttons={[{ text: "Read Case Studies", href: "#services" }]}
/>
</div>
@@ -150,13 +152,15 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "How is on-time arrival guaranteed?", content: "We utilize AI-driven route optimization and local partner networks." },
{ id: "f2", title: "Do you offer international coverage?", content: "Yes, we operate in over 60 countries across all major continents." },
{ id: "f3", title: "How can I track my shipment?", content: "Our dashboard provides real-time tracking integration." }
{ id: "f1", title: "How do we manage risk?", content: "We employ predictive AI models to mitigate disruptions in the supply chain." },
{ id: "f2", title: "What is your customs approach?", content: "We handle full clearance and documentation across 60+ countries globally." },
{ id: "f3", title: "How is real-time tracking integrated?", content: "API-first connectivity ensures live updates for all stakeholders." }
]}
imageSrc="http://img.b2bpic.net/free-photo/young-delivery-man-using-digital-tablet-scanning-bar-code-package-label-while-preparing-shipment-with-his-coworker_637285-2261.jpg"
title="Logistics Questions Answered"
description="Common questions about our logistics processes and service guarantees."
title="Questions about our logistics?"
description="Answers for fast-growing businesses."
tag="Knowledge Base"
tagIcon={MessageSquare}
faqsAnimation="slide-up"
imageAlt="logistics customer support professional"
/>
@@ -166,9 +170,10 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Get in touch"
title="Scale Your Operations"
description="Ready to streamline your logistics? Contact our growth team."
tag="Partner With Us"
title="Ready to scale your supply chain?"
description="Request a logistics audit and growth plan today."
buttonText="Get Started"
/>
</div>
@@ -176,12 +181,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="LogiGrow"
columns={[
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
{ title: "Resources", items: [{ label: "Growth Metrics", href: "#metrics" }, { label: "Support", href: "#faq" }] }
{ title: "Navigation", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
{ title: "Logistics Solutions", items: [{ label: "Global Network", href: "#metrics" }, { label: "Support Center", href: "#faq" }, { label: "Terms of Service", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}