/* Add custom Js code below */ const metaViewport = document.querySelector('meta[name="viewport"]'); if (metaViewport) { metaViewport.content = "width=device-width, initial-scale=1, maximum-scale=5"; } document.querySelector(".navbar-brand img").alt = "logo"; document.querySelector(".header-btn").setAttribute("aria-label", "header-btn"); document.querySelector("a[href='#mobile-menu']").setAttribute("aria-label", "mobile-menu"); const allLinks = document.querySelectorAll("a[href='https://cyaus.com/xAzQnXz']"); allLinks.forEach((item, index) => item.setAttribute("aria-label", `link-${index + 1}`)); const allImgs = document.querySelectorAll(".testimonial__avatar img"); allImgs.forEach((item, index) => item.alt = `comment-img-${index + 1}` ); const whatsappButton = document.createElement("button"); whatsappButton.id = "whatsapp-button"; whatsappButton.setAttribute("aria-label", "whatsapp-button-label"); whatsappButton.className = "whatsapp-button"; whatsappButton.innerHTML = ` whatsapp-btn `; document.body.appendChild(whatsappButton);