From 0a93b27bacb9550c2d7f44b2f9832edf22351b41 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 18:44:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 74 ++++++++++++++++++++++-------------------------- 1 file changed, 34 insertions(+), 40 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a3953c2..fc2702d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Globe, Shield, Zap } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Globe, Shield, Zap, Package, Truck, Headset, MessageSquare } from "lucide-react"; export default function LandingPage() { return ( @@ -81,21 +81,21 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Global Shipping Network", description: "Seamless cross-border shipping solutions covering major global hubs with real-time tracking.", icon: Globe, + title: "Global Shipping Network", description: "Seamless cross-border shipping solutions covering major global hubs with real-time tracking.", icon: Globe, mediaItems: [ { imageSrc: "http://img.b2bpic.net/free-photo/still-life-supply-chain-representation_23-2149827296.jpg", imageAlt: "Global network diagram" }, { imageSrc: "http://img.b2bpic.net/free-photo/top-view-paper-style-community-map_23-2149377693.jpg", imageAlt: "Global delivery path" }, ], }, { - title: "Priority Express Delivery", description: "Get your urgent packages delivered with our high-speed priority shipping service across all zones.", icon: Zap, + title: "Priority Express Delivery", description: "Get your urgent packages delivered with our high-speed priority shipping service across all zones.", icon: Zap, mediaItems: [ { imageSrc: "http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151662998.jpg", imageAlt: "Fast transport truck" }, { imageSrc: "http://img.b2bpic.net/free-photo/white-refrigerated-truck-transporting-cargo-winter-highway-cold-chain-logistics-delivery_169016-71712.jpg", imageAlt: "Express shipping container" }, ], }, { - title: "Secure Handling Guarantee", description: "Safety is our priority. We use industrial-grade protection for all sensitive and fragile items.", icon: Shield, + title: "Secure Handling Guarantee", description: "Safety is our priority. We use industrial-grade protection for all sensitive and fragile items.", icon: Shield, mediaItems: [ { imageSrc: "http://img.b2bpic.net/free-photo/diverse-storehouse-employees-checking-cardboard-boxes_482257-84287.jpg", imageAlt: "Secure container" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-wearing-neon-vests_23-2149426474.jpg", imageAlt: "Protected cargo handling" }, @@ -133,63 +133,57 @@ export default function LandingPage() {
-
-
-
); -} \ No newline at end of file +}