{ "@context": "https://schema.org", "@type": "Organization", "name": "One Red Cow", "url": "https://www.oneredcow.com", "logo": "https://www.oneredcow.com/logo.png", "founder": { "@type": "Person", "name": "Graham Lawler", "url": "https://www.grahamlawler.com.au" }, "sameAs": [ "https://www.linkedin.com/company/one-red-cow", "https://www.youtube.com/@oneredcow" ], "description": "One Red Cow is a creative and AI-powered branding agency specializing in AI Engine Optimization (AEO), business automation, and high-impact storytelling.", "serviceType": [ "AI Engine Optimization (AEO)", "Branding and Creative Direction", "Video Production and Storytelling", "AI Business Strategy & Automation", "Local AI Agent Deployment" ], "knowsAbout": [ "AI Search", "AI Agents", "AEO", "Branding and Rebranding", "Video Marketing", "Business Automation", "Creative Campaigns" ] } $w.onReady(function () { initHamburgerMenuAnimations(); }); function initHamburgerMenuAnimations() { const hamburgerMenu = $w('#hamburgerMenuMainContainer'); const menuContentWrapper = $w('#hamburgerMenuContentWrapper'); const menu = $w('#hamburgerMenuMenu'); //*** Add default elements classes ***// menuContentWrapper.customClassList.add('clip-menu-box'); menu.customClassList.add('custom-menu-animation'); $w('#openHamburgerMenuBtn').onClick(() => { openMenu() }); $w('#closeHamburgerMenuBtn').onClick(() => { closeMenu() }); const openMenu = () => { hamburgerMenu.open(); menu.customClassList.add('entrance'); //*** Menu reveal animation ***/ setTimeout(() => { menuContentWrapper.customClassList.add('expand-clip-menu-box'); }, 20); } const closeMenu = () => { menuContentWrapper.customClassList.remove('expand-clip-menu-box'); //*** Menu exit animation ***/ menu.customClassList.add('exit'); setTimeout(async () => { await hamburgerMenu.close() menu.customClassList.remove('exit', 'entrance'); }, 350); } }