From 384c7a14295c440d267c40f467054a4afb979473 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 21:22:16 +0000 Subject: [PATCH] Add 'Portal' to navigation menus cgen-0bfa0d3e24944d159e39d7d0a62b09ad --- client/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index ee4d5941..22f4318c 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -42,6 +42,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { const navigation = [ { name: "Home", href: "/" }, + { name: "Portal", href: "/portal" }, { name: "Get Started", href: "/onboarding" }, { name: "Engage", href: "/engage" }, { name: "Developers", href: "/developers" }, @@ -52,6 +53,7 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { const userNavigation = [ { name: "Dashboard", href: "/dashboard" }, + { name: "Portal", href: "/portal" }, { name: "Feed", href: "/feed" }, { name: "Engage", href: "/engage" }, { name: "Developers", href: "/developers" },