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 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