From d21179cad805ba4a2f5f839dae9d94dc53bca6de Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 23:49:08 +0000 Subject: [PATCH] Add src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 113 +++++++++++++++++++++++++++++++++++++ 1 file changed, 113 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..3fc20d6 --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,113 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import { LineChart, Trophy, Percent, Star } from "lucide-react"; + +export const metadata = { + title: 'Dashboard | The Drop Chronicle', + description: 'Your personal dashboard with profile, statistics, and recent activity.', +}; + +export default function DashboardPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+
+
+ ); +}