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..1c1d0ed --- /dev/null +++ b/src/pages/InvestmentDashboardPage.tsx @@ -0,0 +1,47 @@ +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +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 ( + <> +
+
+

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.

+
+ + ); +} 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' }, ];