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." } ]} /> 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" } ]} /> 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" }]} />
- +