/* Infinite capability slider with progressive-blur edges and hover slow-down. Ported from the InfiniteSlider / ProgressiveBlur pattern onto the ZaviFx token layer. */ const CAPABILITIES = [ 'Digital Strategy', 'Search Engine Optimization', 'WordPress Development', 'UI/UX Design', 'Graphic Design & Branding', 'Content Marketing', 'Social Media Marketing', 'Performance Marketing', 'Link Building', 'Website Maintenance', 'Conversion Rate Optimization', ]; function ProgressiveBlur({ side, layers = 6, intensity = 1.4 }) { const angle = side === 'left' ? 270 : 90; return ( ); } function LogoCloud({ heading = 'Capabilities across the funnel', sub = 'Eleven disciplines, one brief' }) { const [slow, setSlow] = React.useState(false); return (

{sub} {heading}

); } Object.assign(window, { LogoCloud, CAPABILITIES });