From 6d6c3823bdb3488bb884d8d14d5dd3f35e9aa7aa Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 20:48:47 +0000 Subject: [PATCH] Bob AI: Add dashboard page --- src/pages/DashboardPage.tsx | 107 ++++++++++++++++++++++-------------- 1 file changed, 66 insertions(+), 41 deletions(-) diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx index 8b5c725..e59d562 100644 --- a/src/pages/DashboardPage.tsx +++ b/src/pages/DashboardPage.tsx @@ -1,46 +1,71 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; -import Button from "@/components/ui/Button"; -import TextAnimation from "@/components/ui/TextAnimation"; -import GridOrCarousel from "@/components/ui/GridOrCarousel"; -import ScrollReveal from "@/components/ui/ScrollReveal"; -import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; +import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; +import ContactCta from "@/components/sections/contact/ContactCta"; export default function DashboardPage() { return ( - <> -
-

System Overview

$450k

Net Profit (Monthly)

-
4,250

AI Leads Generated

-
342

Meetings Booked

-
$12.5k

Avg Employee Earnings

-
-
- +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "System Status", href: "/status" }} + /> + +
+ + + + + +
+
); -} +} \ No newline at end of file