From f5af9c44ceb504029d55a74f45bc604873ff57a1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 10:05:48 +0000 Subject: [PATCH 1/2] Add src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 85 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 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..db03f6a --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import { Users, TrendingUp, Award, Settings, Bell, User, BarChart, Activity } from "lucide-react"; + +export default function DashboardPage() { + return ( + + + + +
+
+
+ +
+
+

Notifications

+

No pending alerts for your current mentorship sessions.

+
+
+ +
+
+

Session Analytics

+
+ +
+
+
+

User Profile

+
+
+
+

Senior Mentor

+

Lead Software Architect

+
+
+
+
+ +
+ +
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1 From 2a1c6a330ca215ac96c39ec511b767f7e9817660 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 10:05:48 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 625aba4..5dd4cba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,7 +36,8 @@ export default function LandingPage() { { name: "Features", id: "#features" }, { name: "Testimonials", id: "#testimonials" }, { name: "FAQ", id: "#faq" }, - { name: "Contact", id: "#contact" } + { name: "Contact", id: "#contact" }, + { name: "Dashboard", id: "/dashboard" } ]} brandName="MentorEdge" /> @@ -206,4 +207,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1