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 ( + + + + +
+ +
+ +
+ +
+ +
+ +
+
+
+ ); +}