From e188a7b067f031c080d958b01eca20862f33c5ee Mon Sep 17 00:00:00 2001 From: imagineer99 Date: Mon, 9 Mar 2026 11:37:19 +0000 Subject: [PATCH] style: improve navbar spacing and icon rendering --- studio/frontend/src/components/navbar.tsx | 41 ++++++++++++----------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/studio/frontend/src/components/navbar.tsx b/studio/frontend/src/components/navbar.tsx index 4a75223dc4..478651ec95 100644 --- a/studio/frontend/src/components/navbar.tsx +++ b/studio/frontend/src/components/navbar.tsx @@ -13,9 +13,9 @@ import { } from "@/components/ui/sheet"; import { cn } from "@/lib/utils"; import { - AiChat02Icon, ArrowRight01Icon, Book03Icon, + BubbleChatIcon, ChefHatIcon, CursorInfo02Icon, PackageIcon, @@ -32,7 +32,7 @@ const NAV_ITEMS = [ { label: "Studio", href: "/studio", icon: ZapIcon, enabled: true }, { label: "Recipes", href: "/data-recipes", icon: ChefHatIcon, enabled: true }, { label: "Export", href: "/export", icon: PackageIcon, enabled: true }, - { label: "Chat", href: "/chat", icon: AiChat02Icon, enabled: true }, + { label: "Chat", href: "/chat", icon: BubbleChatIcon, enabled: true }, ]; function getTourId(pathname: string): "studio" | "chat" | "export" | null { @@ -87,7 +87,7 @@ export function Navbar() { return ( {item.label} @@ -98,7 +98,7 @@ export function Navbar() { key={item.href} to={item.href} className={cn( - "relative rounded-full px-4 py-1.5 text-sm font-medium transition-colors", + "relative rounded-full px-3 py-1.5 text-sm font-medium transition-colors", active ? "text-background" : "text-muted-foreground hover:text-foreground", @@ -116,22 +116,23 @@ export function Navbar() { }} /> )} - - - - - - + + + + {item.label}