import Link from 'next/link'; import { Container } from '@/components/ui/Container'; import { Button } from '@/components/ui/Button'; import { Navigation } from './Navigation'; import { LocaleSwitcher } from '@/components/LocaleSwitcher'; import { MobileMenu } from './MobileMenu'; interface HeaderProps { locale: string; siteName?: string; logo?: string; } export function Header({ locale, siteName = 'KLZ Cables', logo }: HeaderProps) { return (
{/* Logo and Branding */}
{logo ? ( {siteName} ) : (
KLZ
)} {siteName}
{/* Desktop Navigation */}
{/* Mobile Menu */}
); }