3 Commits

Author SHA1 Message Date
6342cae350 Update src/app/page.tsx 2026-05-22 21:59:29 +00:00
6f1e5ab276 Update src/app/page.tsx 2026-05-22 21:59:02 +00:00
ec4c956006 Merge version_2 into main
Merge version_2 into main
2026-05-22 21:57:46 +00:00

View File

@@ -12,7 +12,8 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Globe, Map, Shield } from "lucide-react"; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import { Globe, Map, Shield, Truck, Package, Clock } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -32,7 +33,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Services", id: "features" }, { name: "Services", id: "services" },
{ name: "Process", id: "about" }, { name: "Process", id: "about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "faq" }
@@ -69,6 +70,20 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="services" data-section="services">
<FeatureCardSix
title="Our Specialized Logistics Services"
description="We offer a full spectrum of logistics and supply chain services designed to keep your business moving forward."
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Express Road Freight", description: "High-speed ground transport for domestic and regional delivery needs.", videoSrc: "https://www.w3schools.com/howto/img_video.mp4?_wi=1" },
{ title: "Smart Warehousing", description: "Secure, temperature-controlled storage with inventory management capabilities.", imageSrc: "http://img.b2bpic.net/free-photo/modern-warehouse-with-shelves-full-goods_1150-16147.jpg" },
{ title: "24/7 Dispatch Control", description: "Constant shipment monitoring and real-time coordination of your fleet.", videoSrc: "https://www.w3schools.com/howto/img_video.mp4?_wi=2" }
]}
/>
</div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<MetricSplitMediaAbout <MetricSplitMediaAbout
useInvertedBackground={false} useInvertedBackground={false}
@@ -176,7 +191,7 @@ export default function LandingPage() {
<FooterBaseReveal <FooterBaseReveal
logoText="H&M Logistics Service LLC" logoText="H&M Logistics Service LLC"
columns={[ columns={[
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#features" }] }, { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] } { title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
]} ]}
/> />