import Link from 'next/link' import { usePathname } from 'next/navigation' import { getLocaleFromPath } from '@/lib/i18n' interface NavigationProps { logo?: string siteName: string locale: string } /** * @deprecated Use components/layout/Navigation instead */ export function Navigation({ logo, siteName, locale }: NavigationProps) { const pathname = usePathname() const currentLocale = getLocaleFromPath(pathname) // Static menu for now - can be made dynamic later const mainMenu = [ { title: 'Home', path: `/${locale}` }, { title: 'Blog', path: `/${locale}/blog` }, { title: 'Products', path: `/${locale}/products` }, { title: 'Contact', path: `/${locale}/contact` } ] return ( ) }