diff --git a/src/app/bali-trip/page.tsx b/src/app/bali-trip/page.tsx index ccc87c5..9f3e045 100644 --- a/src/app/bali-trip/page.tsx +++ b/src/app/bali-trip/page.tsx @@ -25,7 +25,7 @@ export default function BaliTripPage() { brandName="Wanderlust" navItems={[ { name: "Home", id: "/" }, - { name: "Packages", id: "/#packages" } + { name: "Packages", id: "/" } ]} button={{ text: "Book Now", href: "#booking" }} /> diff --git a/src/app/package-details/page.tsx b/src/app/package-details/page.tsx index 6740045..addf57e 100644 --- a/src/app/package-details/page.tsx +++ b/src/app/package-details/page.tsx @@ -25,7 +25,7 @@ export default function PackageDetailsPage() { button={{ text: "Book Now", href: "#" }} navItems={[ { name: "Home", id: "/" }, - { name: "Packages", id: "/packages" }, + { name: "Packages", id: "/" }, { name: "Contact", id: "/contact" } ]} /> @@ -64,4 +64,4 @@ export default function PackageDetailsPage() { ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 930409d..1ec0d16 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -110,7 +110,7 @@ export default function LandingPage() { useInvertedBackground={true} plans={[ { id: "basic", price: "$500", name: "Standard Package", buttons: [{ text: "Book Now" }], features: ["Standard accommodation", "Shared transfers", "Group tours"] }, - { id: "pro", price: "$1,500", name: "Bali Experience", buttons: [{ text: "View Bali Details" }], features: ["Private Luxury Villa", "Airport Pickup", "Personal Concierge", "Guided Island Tours"] }, + { id: "pro", price: "$1,500", name: "Bali Experience", buttons: [{ text: "View Bali Details", href: "/bali-trip" }], features: ["Private Luxury Villa", "Airport Pickup", "Personal Concierge", "Guided Island Tours"] }, { id: "elite", price: "$3,000", name: "VIP Elite", buttons: [{ text: "Book Now" }], features: ["All-inclusive luxury", "Private excursions", "Priority booking"] } ]} />