5 Commits

Author SHA1 Message Date
4096d1a470 Merge version_4 into main
Merge version_4 into main
2025-12-23 23:35:17 +00:00
2a1db206c2 Update src/app/page.tsx 2025-12-23 23:35:12 +00:00
f749e1b111 Update src/app/layout.tsx 2025-12-23 23:35:12 +00:00
b93ff2bdb7 Merge version_3 into main
Merge version_3 into main
2025-12-23 23:25:02 +00:00
edd74cdf4c Merge version_2 into main
Merge version_2 into main
2025-12-23 23:22:12 +00:00
2 changed files with 10 additions and 10 deletions

View File

@@ -1275,4 +1275,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -41,7 +41,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero" className="bg-gradient-to-b from-slate-900 via-slate-800 to-slate-900">
<HeroBillboardCarousel <HeroBillboardCarousel
title="Premium Logistics Solutions for Global Enterprise" title="Premium Logistics Solutions for Global Enterprise"
description="Streamline your supply chain with our advanced logistics network. We deliver excellence across every continent with real-time tracking and 24/7 support." description="Streamline your supply chain with our advanced logistics network. We deliver excellence across every continent with real-time tracking and 24/7 support."
@@ -61,7 +61,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about" className="bg-gradient-to-b from-slate-50 via-blue-50 to-slate-50">
<SplitAbout <SplitAbout
title="Why LogisticsPro Leads the Industry" title="Why LogisticsPro Leads the Industry"
description="With two decades of experience and cutting-edge technology, we've redefined what premium logistics means. Our commitment to reliability and innovation sets us apart." description="With two decades of experience and cutting-edge technology, we've redefined what premium logistics means. Our commitment to reliability and innovation sets us apart."
@@ -98,7 +98,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="process" data-section="process"> <div id="process" data-section="process" className="bg-gradient-to-b from-slate-100 via-slate-50 to-slate-100">
<FeatureCardNineteen <FeatureCardNineteen
title="Our Proven Process" title="Our Proven Process"
description="From order to delivery, we optimize every step for speed and reliability" description="From order to delivery, we optimize every step for speed and reliability"
@@ -134,7 +134,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics" className="bg-gradient-to-b from-indigo-900 via-slate-900 to-slate-900">
<MetricCardOne <MetricCardOne
title="Our Stats" title="Our Stats"
description="Key metrics that showcase our growth and success" description="Key metrics that showcase our growth and success"
@@ -177,7 +177,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="team" data-section="team"> <div id="team" data-section="team" className="bg-gradient-to-b from-slate-50 via-orange-50 to-slate-50">
<TeamCardSeven <TeamCardSeven
title="Trusted by Industry Leaders" title="Trusted by Industry Leaders"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -211,7 +211,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials" className="bg-gradient-to-b from-slate-100 via-slate-50 to-slate-100">
<TestimonialCardTwelve <TestimonialCardTwelve
cardTitle="Over 500 enterprises rely on LogisticsPro to power their global supply chains" cardTitle="Over 500 enterprises rely on LogisticsPro to power their global supply chains"
cardTag="Customer Trust" cardTag="Customer Trust"
@@ -246,7 +246,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact" className="bg-gradient-to-b from-slate-900 via-slate-800 to-slate-900">
<ContactCenter <ContactCenter
tag="Get In Touch" tag="Get In Touch"
title="Ready to Transform Your Logistics?" title="Ready to Transform Your Logistics?"
@@ -259,7 +259,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer" className="bg-slate-950">
<FooterSocial <FooterSocial
logoText="LogisticsPro" logoText="LogisticsPro"
copyrightText="© LogisticsPro, Inc. 2025. All rights reserved." copyrightText="© LogisticsPro, Inc. 2025. All rights reserved."
@@ -323,4 +323,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }