From 0c1b2eca21f1f76dbbebc64df538ecc2e02358be Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 17:58:34 +0000 Subject: [PATCH] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 170 +++++++++++++++---------------------- 1 file changed, 67 insertions(+), 103 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index c2aa1b5..4c53fdc 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -4,62 +4,88 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; + +const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + { name: "Login", id: "/login" }, + { name: "Signup", id: "/signup" }, + { name: "Dashboard", id: "/dashboard" } +]; + +const commonFooterColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Dashboard", href: "/dashboard" }, + { label: "Login", href: "/login" } + ] + }, + { + title: "Company", items: [ + { label: "About Us", href: "#about" }, + { label: "Careers", href: "#" }, + { label: "Blog", href: "#" }, + { label: "Contact", href: "#contact" } + ] + }, + { + title: "Resources", items: [ + { label: "Help Center", href: "#" }, + { label: "API Docs", href: "#" }, + { label: "Community", href: "#" }, + { label: "Support", href: "#" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" } + ] + } +]; export default function DashboardPage() { return ( -
+
@@ -67,73 +93,11 @@ export default function DashboardPage() { ); -} +} \ No newline at end of file