import Logo from '@/components/ui/Logo'; interface BrandLogoProps { showPulse?: boolean; className?: string; size?: number; } const BrandLogo = ({ showPulse = false, className = '', size }: BrandLogoProps) => { // Extract size from className if provided (e.g., h-20 w-20 = 80px) const sizeMatch = className.match(/h-(\d+)|w-(\d+)/); const extractedSize = sizeMatch ? parseInt(sizeMatch[1] || sizeMatch[2]) * 4 : undefined; const logoSize = size || extractedSize || 40; return (