document.addEventListener("DOMContentLoaded", function () { const interval = setInterval(() => { const footer = document.querySelector("footer"); if (footer) { clearInterval(interval); // إنشاء النص "صُمِّم بواسطة: JPNX" const designNote = document.createElement("div"); designNote.innerHTML = `صُمِّم بواسطة : JPNX`; designNote.style.color = "#ede5d9"; designNote.style.fontSize = "16px"; designNote.style.marginTop = "20px"; // إضافة مسافة بين النص والأجزاء الأخرى designNote.style.textAlign = "center"; designNote.style.lineHeight = "1.5"; // العثور على العنصر الذي يحتوي على نص "جميع الحقوق محفوظة" const copyrightBox = footer.querySelector(".text-gray-400"); if (copyrightBox) { // إضافة النص قبل حقوق النشر copyrightBox.parentElement.insertBefore(designNote, copyrightBox); } else { footer.appendChild(designNote); // إذا لم يتم العثور على العنصر المناسب، إضافته في نهاية الفوتر } } }, 300); // التحقق من الفوتر كل 300 ملي ثانية });