illustration

Coming Soon

New WordPress website is being built and will be published soon

document.addEventListener("DOMContentLoaded", function () { const text = "Ruled by Its Fans".toUpperCase(); const el = document.getElementById("typing-text"); let index = 0; let isDeleting = false; function typeEffect() { if (isDeleting) { el.textContent = text.substring(0, index--); } else { el.textContent = text.substring(0, index++); } if (!isDeleting && index > text.length) { setTimeout(() => isDeleting = true, 1000); // pause before delete } else if (isDeleting && index < 0) { isDeleting = false; } setTimeout(typeEffect, 150); // typing/deleting speed } typeEffect(); });