// animated tab const animation = [ { emoji: "🌍", title: "AROUND the world", }, { emoji: "🌏", title: "around THE world", }, { emoji: "🌎", title: "around the WORLD", }, ]; let tabAnimationStep = 0; const favicon = document.querySelector("link[rel='icon']"); const updateTab = () => { const currentAnimation = animation[tabAnimationStep % animation.length]; favicon.href = `data:image/svg+xml,${currentAnimation.emoji}`; document.title = currentAnimation.title; tabAnimationStep++; setTimeout(updateTab, 1000); }; updateTab();