1 Commits

Author SHA1 Message Date
b27d1acc8f Update src/app/page.tsx 2025-12-23 23:24:58 +00:00

View File

@@ -5,12 +5,12 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricCardSix from '@/components/sections/metrics/MetricCardSix'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import TeamCardSeven from '@/components/sections/team/TeamCardSeven'; import TeamCardSeven from '@/components/sections/team/TeamCardSeven';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSocial from '@/components/sections/footer/FooterSocial'; import FooterSocial from '@/components/sections/footer/FooterSocial';
import { Globe, Zap, Users, Leaf, Clock, Package, Headphones, Star, Send, Linkedin, Twitter, Facebook, Instagram } from "lucide-react"; import { Globe, Zap, Users, Leaf, Clock, Package, Headphones, Star, Send, Linkedin, Twitter, Facebook, Instagram, TrendingUp } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -135,10 +135,11 @@ export default function LandingPage() {
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardSix <MetricCardOne
title="Industry-Leading Performance" title="Our Stats"
description="Our track record speaks for itself with measurable results" description="Key metrics that showcase our growth and success"
tag="Our Stats" tag="Statistics"
tagIcon={TrendingUp}
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
@@ -147,30 +148,30 @@ export default function LandingPage() {
{ {
id: "1", id: "1",
value: "99.8%", value: "99.8%",
tag: "On-Time", title: "Delivery Success",
tagIcon: Clock, description: "On-time delivery rate across global network",
title: "Delivery Success Rate" icon: Clock
}, },
{ {
id: "2", id: "2",
value: "150+", value: "150+",
tag: "Global", title: "Countries Served",
tagIcon: Globe, description: "Global presence with strategic distribution centers",
title: "Countries Served" icon: Globe
}, },
{ {
id: "3", id: "3",
value: "500M+", value: "500M+",
tag: "Shipped", title: "Parcels Delivered",
tagIcon: Package, description: "Successfully shipped and tracked worldwide",
title: "Parcels Delivered" icon: Package
}, },
{ {
id: "4", id: "4",
value: "24/7", value: "24/7",
tag: "Support", title: "Customer Support",
tagIcon: Headphones, description: "Round-the-clock assistance for all inquiries",
title: "Customer Service" icon: Headphones
} }
]} ]}
/> />