From 33c52c7be0963e83e23e71ad9bf9a319079bcae1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:10:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 10c4eaf..d1c5274 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1416,4 +1416,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From 2bfbd07c7e2228d947090a61d3d34548bbe32271 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:10:53 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d440a14..506fb00 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,14 +6,14 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import BlogCardOne from '@/components/sections/blog/BlogCardOne'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Leaf, TreePine, Sparkles, Camera, Calendar, Phone, Mail, MapPin, MessageSquare } from 'lucide-react'; +import { Leaf, TreePine, Sparkles, Camera, Phone, Mail, MapPin, MessageSquare } from 'lucide-react'; export default function LandingPage() { - const handleBookingSubmit = (email: string) => { - console.log('Booking email submitted:', email); + const handleContactSubmit = (email: string) => { + console.log('Contact email submitted:', email); }; return ( @@ -38,7 +38,7 @@ export default function LandingPage() { { name: "Gallery", id: "gallery" }, { name: "Contact", id: "contact" } ]} - button={{ text: "Book Now", href: "booking" }} + button={{ text: "Book Now", href: "contact-info" }} brandName="Hotel Ekaant" /> @@ -55,8 +55,8 @@ export default function LandingPage() { imageAlt="Hotel Ekaant Resort surrounded by green landscape" mediaAnimation="slide-up" buttons={[ - { text: "Book Now", href: "booking" }, - { text: "View Rooms", href: "gallery" } + { text: "View Rooms", href: "gallery" }, + { text: "Learn More", href: "about" } ]} buttonAnimation="slide-up" /> @@ -139,23 +139,19 @@ export default function LandingPage() { /> -
- +
@@ -177,7 +173,7 @@ export default function LandingPage() { ]} title="Contact Information" description="Reach out to us for reservations, inquiries, or any special requests" - tag="Get In Touch" + tag="Contact Details" tagIcon={Phone} tagAnimation="slide-up" textboxLayout="default" @@ -228,4 +224,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1