document.addEventListener("DOMContentLoaded", function () {
let footerSpan = document.querySelector("#app > div.app-inner.flex.flex-col.min-h-full > footer > div.md\\:flex.items-center.justify-between.py-4.container.text-center > span");
// التحقق من وجود العنصر لتجنب الأخطاء
if (footerSpan) {
// التحقق من لغة الموقع
if (document.documentElement.lang === "ar") {
footerSpan.innerHTML = 'تم التطوير بواسطة عمر عطاء';
} else {
footerSpan.innerHTML = 'Developed by Omar Ataa';
}
} else {
console.warn("⚠️ لم يتم العثور على العنصر المطلوب في الفوتر.");
}
});