From 38deddd176a83d8ff8334e59a795f32567617231 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 14:52:13 +0000 Subject: [PATCH 1/6] Update src/app/account/page.tsx --- src/app/account/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index 83a2949..28f1d57 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -30,7 +30,7 @@ export default function AccountPanelPage() { { name: "Destinations", id: "destinations" }, { name: "Reviews", id: "reviews" }, { name: "Contact", id: "contact" }, - { name: "Account", href: "/account" } + { name: "Account", id: "/account" } ]} brandName="Luxuria" button={{ text: "Plan Your Trip", href: "/#contact" }} @@ -39,10 +39,11 @@ export default function AccountPanelPage() {
+ > +

Your Account Panel

+
{/* Order History */} -- 2.49.1 From 2291efcba7cd897dd7a92d5e49276c0b6f11d5b0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 14:52:13 +0000 Subject: [PATCH 2/6] Update src/app/consultation/page.tsx --- src/app/consultation/page.tsx | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/app/consultation/page.tsx b/src/app/consultation/page.tsx index 266693c..4b6a019 100644 --- a/src/app/consultation/page.tsx +++ b/src/app/consultation/page.tsx @@ -28,8 +28,8 @@ export default function ConsultationPage() { { name: "Services", id: "services" }, { name: "Destinations", id: "destinations" }, { name: "Reviews", id: "reviews" }, - { name: "Consultation", href: "/consultation" }, - { name: "Support", href: "/support" }, + { name: "Consultation", id: "/consultation" }, + { name: "Support", id: "/support" }, { name: "Contact", id: "contact" } ]} brandName="Luxuria" @@ -46,16 +46,7 @@ export default function ConsultationPage() { mediaPosition="right" mediaAnimation="slide-up" buttonText="Submit Request" - inputs={[ - { name: "name", type: "text", placeholder: "Full Name", required: true }, - { name: "email", type: "email", placeholder: "Email Address", required: true }, - { name: "phone", type: "tel", placeholder: "Phone Number" }, - { name: "preferredDate", type: "date", placeholder: "Preferred Consultation Date" }, - { name: "travelPreferences", type: "text", placeholder: "Briefly describe your travel preferences" }, - ]} - textarea={{ - name: "message", placeholder: "Tell us more about your dream destination and expectations...", rows: 4, - }} + /> Date: Mon, 1 Jun 2026 14:52:14 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c3900d2..8667a06 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,8 +35,8 @@ export default function LuxuryTravelAgencyTemplatePage() { { name: "Services", id: "services" }, { name: "Destinations", id: "destinations" }, { name: "Reviews", id: "reviews" }, - { name: "Consultation", href: "/consultation" }, - { name: "Support", href: "/support" }, + { name: "Consultation", id: "/consultation" }, + { name: "Support", id: "/support" }, { name: "Contact", id: "contact" } ]} brandName="Luxuria" -- 2.49.1 From 69ef3d1892cfb83e6f16522c29ebc32e84a8185c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 14:52:14 +0000 Subject: [PATCH 4/6] Update src/app/services/page.tsx --- src/app/services/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index cb50883..21675e2 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -26,7 +26,7 @@ export default function ServicesPage() { Date: Mon, 1 Jun 2026 14:52:14 +0000 Subject: [PATCH 5/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 65f72c8..977b042 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -7,7 +7,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ContactForm from '@/components/form/ContactForm'; import FooterCard from "@/components/sections/footer/FooterCard"; import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem'; -import { ShoppingCart, ShoppingBag, CreditCard } from "lucide-react"; +import { ShoppingCart, ShoppingBag, CreditCard, Instagram, Facebook, Linkedin } from "lucide-react"; export default function ShopPage() { // Dummy product data for demonstration @@ -43,7 +43,7 @@ export default function ShopPage() { { name: "Destinations", id: "destinations" }, { name: "Reviews", id: "reviews" }, { name: "Contact", id: "contact" }, - { name: "Shop", href: "/shop" } + { name: "Shop", id: "/shop" } ]; return ( @@ -115,22 +115,7 @@ export default function ShopPage() { title="Secure Checkout & Quick Order" description="Complete your purchase securely or place a quick order. We support various online payment methods to ensure a smooth transaction." useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/contact/contact1.webp" - imageAlt="Online Payment" - mediaPosition="right" - mediaAnimation="slide-up" buttonText="Proceed to Payment" - inputs={[ - { name: "name", type: "text", placeholder: "Full Name", required: true }, - { name: "email", type: "email", placeholder: "Email Address", required: true }, - { name: "address", type: "text", placeholder: "Shipping Address", required: true }, - { name: "city", type: "text", placeholder: "City", required: true }, - { name: "zip", type: "text", placeholder: "Zip Code", required: true }, - { name: "payment", type: "select", placeholder: "Payment Method", options: ["Credit Card", "PayPal", "Bank Transfer"], required: true } - ]} - textarea={{ - name: "notes", placeholder: "Any special delivery instructions or order notes...", rows: 3 - }} className="py-20" />
-- 2.49.1 From 5ddb990fd502654be987499d395693e1d5c29e47 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 14:52:15 +0000 Subject: [PATCH 6/6] Update src/app/support/page.tsx --- src/app/support/page.tsx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/src/app/support/page.tsx b/src/app/support/page.tsx index eae7adc..b3304fa 100644 --- a/src/app/support/page.tsx +++ b/src/app/support/page.tsx @@ -28,8 +28,8 @@ export default function SupportPage() { { name: "Services", id: "services" }, { name: "Destinations", id: "destinations" }, { name: "Reviews", id: "reviews" }, - { name: "Consultation", href: "/consultation" }, - { name: "Support", href: "/support" }, + { name: "Consultation", id: "/consultation" }, + { name: "Support", id: "/support" }, { name: "Contact", id: "contact" } ]} brandName="Luxuria" @@ -46,15 +46,7 @@ export default function SupportPage() { mediaPosition="right" mediaAnimation="slide-up" buttonText="Submit Support Request" - inputs={[ - { name: "name", type: "text", placeholder: "Full Name", required: true }, - { name: "email", type: "email", placeholder: "Email Address", required: true }, - { name: "phone", type: "tel", placeholder: "Phone Number" }, - { name: "bookingRef", type: "text", placeholder: "Booking Reference (Optional)" }, - ]} - textarea={{ - name: "message", placeholder: "Describe your request or issue in detail...", rows: 4, - }} + />