From f308ab72e6814eeceb6057c4d9f3e89f0d08fc05 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 15:18:10 +0000 Subject: [PATCH] Add src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 69 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/dashboard/page.tsx 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