From fe211e9dce3ab6c8738c3f30f5c2d24bc26f0516 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 3 Oct 2025 23:53:21 +0000 Subject: [PATCH] Add pricing navigation cgen-eb8f1f1299e84f4dba6f7b287496a023 --- client/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index a444133e..9096a5a3 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -32,6 +32,7 @@ export default function Layout({ children }: LayoutProps) { const navigation = [ { name: "Home", href: "/" }, { name: "Get Started", href: "/onboarding" }, + { name: "Pricing", href: "/pricing" }, { name: "Profiles", href: "/profiles" }, { name: "About", href: "/about" }, { name: "Contact", href: "/contact" }, @@ -40,6 +41,7 @@ export default function Layout({ children }: LayoutProps) { const userNavigation = [ { name: "Dashboard", href: "/dashboard" }, { name: "Feed", href: "/feed" }, + { name: "Pricing", href: "/pricing" }, { name: "Profiles", href: "/profiles" }, { name: "Home", href: "/" }, { name: "About", href: "/about" },