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