From afe0547db31aa50b27511e62185810eeb3464adc Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 02:49:58 +0000 Subject: [PATCH] Bob AI: add the company logo to the header and the hero section --- src/components/ui/NavbarDropdown.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/ui/NavbarDropdown.tsx b/src/components/ui/NavbarDropdown.tsx index e3a86a8..c8549ab 100644 --- a/src/components/ui/NavbarDropdown.tsx +++ b/src/components/ui/NavbarDropdown.tsx @@ -6,6 +6,7 @@ import Button from "@/components/ui/Button"; interface NavbarDropdownProps { logo: string; + logoImageSrc?: string; navItems: { name: string; href: string }[]; ctaButton: { text: string; href: string }; } @@ -19,7 +20,7 @@ const handleNavClick = (e: React.MouseEvent, 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