diff --git a/app/bots/BotNavigation.tsx b/app/bots/BotNavigation.tsx index 6771105e..d1accc32 100644 --- a/app/bots/BotNavigation.tsx +++ b/app/bots/BotNavigation.tsx @@ -5,6 +5,7 @@ import Link from 'next/link'; import type { Route } from 'next'; import { Dialog, Transition } from '@headlessui/react'; import { BotSwitcher, SiteMenuDropdown } from '@/components/navigation'; +import { Logo } from '@/components/shared/Logo'; import { menuItems } from '@/data/menuItems'; import { useScrollNavigation, getNavColors } from '@/lib/hooks'; import type { BotMenuItem } from '@/types/bot'; @@ -53,11 +54,11 @@ export const BotNavigation: React.FC = ({ }; // Get color classes from centralized config - const colors = getNavColors(accentColor); + const colors = getNavColors(); const navClasses = isScrolled - ? 'bg-white shadow-md border-b border-gray-200' - : 'bg-white border-b border-gray-200'; + ? 'bg-surface shadow-md border-b border-edge' + : 'bg-surface border-b border-edge'; return (