diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..b80d32f --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,80 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; +import { Activity, Flame, LayoutDashboard, Settings, Target, Zap } from "lucide-react"; + +export default function DashboardPage() { + return ( + + + + +
+
+

Overview

+ +
+ +
+
+ +
+ +
+ +
+
+
+
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 5705d0d..1266493 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "Features", id: "#features" }, { name: "Pricing", id: "#pricing" }, { name: "About", id: "#about" }, + { name: "Dashboard", id: "/dashboard" }, ]} brandName="ManifiX" /> @@ -162,4 +163,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}