Update src/app/page.tsx

This commit is contained in:
2026-05-15 11:55:35 +00:00
parent 6d2097c31f
commit 3432180d0a

View File

@@ -11,7 +11,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import { Award, MapPin, Smile, Mail } from "lucide-react";
import { Award, MapPin, Smile, Mail, Phone, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,7 +28,15 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<div id="nav" data-section="nav" className="relative z-50">
<div className="fixed bottom-6 right-6 z-[999] flex flex-col gap-3 md:hidden">
<a href="tel:+919639272908" className="bg-primary p-4 rounded-full text-white shadow-lg animate-bounce">
<Phone size={24} />
</a>
<a href="https://wa.me/919639272908" className="bg-green-500 p-4 rounded-full text-white shadow-lg">
<MessageCircle size={24} />
</a>
</div>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
@@ -122,7 +130,7 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
className="py-16"
useInvertedBackground={false}
buttons={[{ text: "Call Us Now", href: "tel:+919999999999" }]}
buttons={[{ text: "Call Us Now", href: "tel:+919639272908" }]}
/>
<ContactForm
title="Book Your Taxi Today"
@@ -139,7 +147,7 @@ export default function LandingPage() {
columns={[
{
title: "Contact", items: [
{ label: "+91 99999-99999", href: "tel:+919999999999" },
{ label: "+91 96392-72908", href: "tel:+919639272908" },
{ label: "info@radheytravels.com", href: "mailto:info@radheytravels.com" },
{ label: "Dehradun, Uttarakhand", href: "#" },
],