diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..ddf507d --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,55 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { LayoutDashboard, Package, ShoppingBag, TrendingUp } from "lucide-react"; +import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; + +export default function DashboardPage() { + return ( + + +
+
+
+

+ + Dashboard Overview +

+
+ + +
+
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 5ac906a..e17d746 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; @@ -38,6 +39,8 @@ export default function LandingPage() { name: "About", id: "about"}, { name: "Products", id: "products"}, + { + name: "Analytics", id: "analytics"}, { name: "Contact", id: "contact"}, ]} @@ -141,6 +144,20 @@ export default function LandingPage() { /> +
+ +
+
); -} +} \ No newline at end of file