Update src/app/page.tsx

This commit is contained in:
2026-04-24 12:27:24 +00:00
parent 6c076620c4
commit 06dcb200c3

View File

@@ -10,7 +10,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { CheckCircle, FileText, Globe, Package, Truck, Zap } from "lucide-react";
import { CheckCircle, FileText, Globe, Package, Truck, Zap, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -40,6 +40,10 @@ export default function LandingPage() {
/>
</div>
<a href="https://wa.me/7600434833" target="_blank" className="fixed bottom-6 right-6 z-50 flex h-14 w-14 items-center justify-center rounded-full bg-green-500 text-white shadow-lg transition-all hover:scale-110">
<MessageCircle size={32} />
</a>
<div id="hero" data-section="hero">
<HeroOverlay
title="Fast, Reliable & Nationwide Logistics You Can Trust"
@@ -202,6 +206,11 @@ export default function LandingPage() {
{ label: "Nationwide", href: "#services" },
],
},
{
title: "Social", items: [
{ label: "Instagram", href: "https://instagram.com/" },
],
},
{
title: "Contact", items: [
{ label: "7600434833", href: "tel:7600434833" },
@@ -215,4 +224,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}