diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..8bb996d --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { LayoutDashboard, ShoppingBag, Heart, Settings, User } from "lucide-react"; + +export default function DashboardPage() { + return ( + + + + +
+

Customer Dashboard

+
+
+

Profile

+

View and edit your personal information and preferences.

+
+
+

Order History

+

Track your current and past service bookings.

+
+
+

Saved Items

+

Manage your favorite services and companies.

+
+
+

Settings

+

Configure account security, notifications, and WhatsApp integration.

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