From d3393a4c1c9cc7487911c512a02a2260f31be21a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 06:38:07 +0000 Subject: [PATCH 1/3] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 67 ++++++++-------------------------------- 1 file changed, 13 insertions(+), 54 deletions(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index fa9caf9..be764c9 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -export default function LandingPage() { +export default function BookingPage() { return ( @@ -63,30 +45,13 @@ export default function LandingPage() { description="Safari packages for everyone." plans={[ { - id: "pl1", - title: "Day Trip", - price: "₹2000", - period: "day", - features: [ - "Guide included", - "Water bottle", - ], - imageSrc: "http://img.b2bpic.net/free-photo/old-woman-celebrating-world-photography-day_23-2151644699.jpg", - imageAlt: "happy tourist wildlife safari", + id: "pl1", title: "Day Trip", price: "₹2000", period: "day", features: ["Guide included", "Water bottle"], + imageSrc: "http://img.b2bpic.net/free-photo/old-woman-celebrating-world-photography-day_23-2151644699.jpg", imageAlt: "happy tourist wildlife safari", button: { text: "Select", href: "#" } }, { - id: "pl2", - title: "Weekend Stay", - price: "₹8000", - period: "weekend", - features: [ - "Luxury tent", - "All meals", - "Guided safari", - ], - imageSrc: "http://img.b2bpic.net/free-photo/lonely-tiger-sitting-near-tree-roots-relaxing-jungle_181624-6014.jpg?_wi=3", - imageAlt: "happy tourist wildlife safari", - }, + id: "pl2", title: "Weekend Stay", price: "₹8000", period: "weekend", features: ["Luxury tent", "All meals", "Guided safari"], + imageSrc: "http://img.b2bpic.net/free-photo/lonely-tiger-sitting-near-tree-roots-relaxing-jungle_181624-6014.jpg", imageAlt: "happy tourist wildlife safari", button: { text: "Select", href: "#" } + } ]} /> @@ -96,13 +61,7 @@ export default function LandingPage() { layout="section" title="Booking Policy" sections={[ - { - heading: "Terms", - content: { - type: "paragraph", - text: "Non-refundable deposits apply.", - }, - }, + { heading: "Terms", content: "Non-refundable deposits apply." } ]} /> -- 2.49.1 From fb272501a0436bfca69e8c631b7552bd37dc193f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 06:38:08 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 52 ++++++++-------------------------------- 1 file changed, 10 insertions(+), 42 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8711e06..a8e3a8b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -export default function LandingPage() { +export default function ContactPage() { return ( @@ -59,13 +41,7 @@ export default function LandingPage() { layout="section" title="Head Office" sections={[ - { - heading: "Address", - content: { - type: "paragraph", - text: "Tadoba-Andhari Tiger Reserve, Maharashtra.", - }, - }, + { heading: "Address", content: "Tadoba-Andhari Tiger Reserve, Maharashtra." } ]} /> @@ -79,16 +55,8 @@ export default function LandingPage() { title="Quick Facts" description="Contact info at a glance." metrics={[ - { - id: "c1", - value: "24/7", - description: "Help Desk", - }, - { - id: "c2", - value: "10", - description: "Support Nodes", - }, + { id: "c1", value: "24/7", description: "Help Desk" }, + { id: "c2", value: "10", description: "Support Nodes" } ]} /> -- 2.49.1 From 2e725f2997f90c02d1a28bb96f8310ffa10141ae Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 06:38:08 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 203 ++++------------------------------------------- 1 file changed, 16 insertions(+), 187 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ad5a1b..ab82a7c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,30 +28,12 @@ export default function LandingPage() { @@ -236,28 +81,12 @@ export default function LandingPage() { useInvertedBackground={false} title="Our Impact" description="Measuring success one hectare at a time." - metrics={[ - { - id: "m1", - value: "15,000+", - description: "Hectares Restored", - }, - { - id: "m2", - value: "200+", - description: "Species Protected", - }, - { - id: "m3", - value: "45,000", - description: "Annual Visitors", - }, - ]} + metrics={[{ id: "m1", value: "15,000+", description: "Hectares Restored" }, { id: "m2", value: "200+", description: "Species Protected" }, { id: "m3", value: "45,000", description: "Annual Visitors" }]} />
- +