From af9a2fc4b8f4bafe083ea6816810d52cd8c7af21 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 20:03:00 +0000 Subject: [PATCH] Bob AI: Add logo image to navbar --- src/components/Layout.tsx | 1 + src/components/ui/NavbarDropdown.tsx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d754e59..f4ae426 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { , href: string, on onClose?.(); }; -const NavbarDropdown = ({ logo, navItems, ctaButton }: NavbarDropdownProps) => { +const NavbarDropdown = ({ logo, logoImageSrc, navItems, ctaButton }: NavbarDropdownProps) => { const [menuOpen, setMenuOpen] = useState(false); const navRef = useRef(null); -- 2.49.1