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 */} 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, - }} + />
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, - }} + />