From 114743adda1caab8dcd797305aa65f9bda1c8de2 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 21:45:29 +0000 Subject: [PATCH] Add Investors to navigation cgen-a987a43182b44561bc84d39d987df965 --- client/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index e4b64b93..bf5ba8ca 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -43,6 +43,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { const navigation = [ { name: "Home", href: "/" }, { name: "Realms", href: "/realms" }, + { name: "Investors", href: "/investors" }, { name: "Get Started", href: "/onboarding" }, { name: "Engage", href: "/engage" }, { name: "Developers", href: "/developers" }, @@ -54,6 +55,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { const userNavigation = [ { name: "Dashboard", href: "/dashboard" }, { name: "Realms", href: "/realms" }, + { name: "Investors", href: "/investors" }, { name: "Feed", href: "/feed" }, { name: "Engage", href: "/engage" }, { name: "Developers", href: "/developers" },