diff --git a/src/app/bali-trip/page.tsx b/src/app/bali-trip/page.tsx
new file mode 100644
index 0000000..ccc87c5
--- /dev/null
+++ b/src/app/bali-trip/page.tsx
@@ -0,0 +1,75 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
+import FooterSimple from "@/components/sections/footer/FooterSimple";
+import { MapPin } from "lucide-react";
+
+export default function BaliTripPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/package-details/page.tsx b/src/app/package-details/page.tsx
new file mode 100644
index 0000000..0040a76
--- /dev/null
+++ b/src/app/package-details/page.tsx
@@ -0,0 +1,66 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
+import FooterSimple from "@/components/sections/footer/FooterSimple";
+
+export default function PackageDetailsPage() {
+ return (
+
+
+
+
+
+
+
{} },
+ { label: "Hotel Type", options: ["Boutique", "Resort", "Villa"], selected: "Resort", onChange: () => {} }
+ ]}
+ buttons={[
+ { text: "Book Flight & Stay", onClick: () => console.log("Booking") }
+ ]}
+ />
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ac4e5f0..930409d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -91,7 +91,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
products={[
- { id: "p1", name: "Bali Luxury Escape", price: "$1,299", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-hands-holding-notebook-cash_23-2149617678.jpg" },
+ { id: "p1", name: "Bali Luxury Escape", price: "From $1,299", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-hands-holding-notebook-cash_23-2149617678.jpg" },
{ id: "p2", name: "Parisian Romance", price: "$1,450", imageSrc: "http://img.b2bpic.net/free-photo/eiffel-tower-closeup-with-street-as-famous-city-landmark-paris_649448-4860.jpg" },
{ id: "p3", name: "Tokyo Culture Trip", price: "$1,800", imageSrc: "http://img.b2bpic.net/free-photo/women-traditional-japanese-kimonos-fushimi-inari-shrine-kyoto-japan_335224-71.jpg" },
{ id: "p4", name: "Alpine Adventure", price: "$2,100", imageSrc: "http://img.b2bpic.net/free-photo/winter-vacation-holiday-wooden-house-mountains-covered-with-snow-blue-sky-skis-front-house_639032-857.jpg" },
@@ -109,9 +109,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
plans={[
- { id: "basic", price: "$500", name: "Essential", buttons: [{ text: "Book Now" }], features: ["Hotel booking", "Transport", "24/7 Support"] },
- { id: "pro", price: "$1,500", name: "Premium", buttons: [{ text: "Book Now" }], features: ["Luxury suites", "Private transfers", "Personal Guide"] },
- { id: "elite", price: "$3,000", name: "VIP Concierge", buttons: [{ text: "Book Now" }], features: ["Private jets", "Custom Itinerary", "Full concierge"] }
+ { 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: "elite", price: "$3,000", name: "VIP Elite", buttons: [{ text: "Book Now" }], features: ["All-inclusive luxury", "Private excursions", "Priority booking"] }
]}
/>
@@ -171,4 +171,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}