From 536b71c8edaaf5682d477e357989725d03439bdd Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 21:01:59 +0000 Subject: [PATCH 1/2] Bob AI: Add investment-dashboard page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/InvestmentDashboardPage.tsx | 79 +++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 84 insertions(+) create mode 100644 src/pages/InvestmentDashboardPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 97c505c..2a5924b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import HomePage from './pages/HomePage'; import DashboardPage from "@/pages/DashboardPage"; import AiCommandCenterPage from "@/pages/AiCommandCenterPage"; +import InvestmentDashboardPage from "@/pages/InvestmentDashboardPage"; export default function App() { return ( @@ -11,6 +12,7 @@ export default function App() { } /> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c0aba9f..e0a14aa 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -30,6 +30,8 @@ export default function Layout() { }, { name: "Dashboard", href: "/dashboard" }, { name: "Ai Command Center", href: "/ai-command-center" }, + { name: "Investment Dashboard", href: "/investment-dashboard" }, + ]; diff --git a/src/pages/InvestmentDashboardPage.tsx b/src/pages/InvestmentDashboardPage.tsx new file mode 100644 index 0000000..7da3c09 --- /dev/null +++ b/src/pages/InvestmentDashboardPage.tsx @@ -0,0 +1,79 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; +import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; +import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import GridLinesBackground from "@/components/ui/GridLinesBackground"; + +export default function InvestmentDashboardPage() { + return ( +
+ + + ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Client Portal", href: "/portal" }} + /> + +
+ + + + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 4553036..52b6c77 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -8,4 +8,5 @@ export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/dashboard', label: 'Dashboard', pageFile: 'DashboardPage' }, { path: '/ai-command-center', label: 'Ai Command Center', pageFile: 'AiCommandCenterPage' }, + { path: '/investment-dashboard', label: 'Investment Dashboard', pageFile: 'InvestmentDashboardPage' }, ]; -- 2.49.1 From 255ad1228cb40e4d66189cf06eb1b86921330fbe Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 21:02:45 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/InvestmentDashboardPage.tsx (snippet builder, 4 sections) --- src/pages/InvestmentDashboardPage.tsx | 116 ++++++++++---------------- 1 file changed, 42 insertions(+), 74 deletions(-) diff --git a/src/pages/InvestmentDashboardPage.tsx b/src/pages/InvestmentDashboardPage.tsx index 7da3c09..1c1d0ed 100644 --- a/src/pages/InvestmentDashboardPage.tsx +++ b/src/pages/InvestmentDashboardPage.tsx @@ -1,79 +1,47 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; -import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; -import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; -import GridLinesBackground from "@/components/ui/GridLinesBackground"; +import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import FeaturesBento from "@/components/sections/features/FeaturesBento"; export default function InvestmentDashboardPage() { return ( -
- - - ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Client Portal", href: "/portal" }} - /> - -
- - - - - -
- - -
+ <> +
+
+

Asset Management

Commercial Real Estate

Monitor occupancy rates, NOI, and property valuations across your global commercial assets.

+

Private Equity Holdings

Track capital deployment, operational milestones, and projected IRR for direct investments.

+

Market Equities

Real-time analysis of liquid assets, dividend yields, and overall portfolio volatility.

+

AI Valuation Models

Leverage predictive analytics for proactive asset management and market trend forecasting.

+
+ ); -} \ No newline at end of file +} -- 2.49.1