diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx new file mode 100644 index 0000000..83a2949 --- /dev/null +++ b/src/app/account/page.tsx @@ -0,0 +1,103 @@ +"use client"; + +import React from "react"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import TextAnimation from "@/components/text/TextAnimation"; +import { Sparkles, Instagram, Facebook, Linkedin, History, Heart, Settings, MessageSquare, MapPin } from "lucide-react"; + +export default function AccountPanelPage() { + return ( + + + + +
+
+ + +
+ {/* Order History */} +
+ +

Order History

+

View your past bookings, completed trips, and detailed invoices. Rebook your favorite journeys with ease.

+ +
+ + {/* Favorites / Wishlist */} +
+ +

Favorites & Wishlist

+

Save your dream destinations and preferred travel experiences for future reference and easy booking.

+ +
+ + {/* Account Settings */} +
+ +

Account Settings

+

Update your personal information, communication preferences, and security settings.

+ +
+ + {/* Support Ticket System */} +
+ +

Support & Assistance

+

Submit new support tickets, view the status of your existing requests, and get help from our dedicated team.

+ +
+ + {/* Order Tracking */} +
+ +

Order Tracking

+

Monitor the live status of your upcoming trips, flights, and accommodations. Stay informed every step of the way.

+ +
+
+
+
+ + +
+
+ ); +} \ No newline at end of file