Update index.html

This commit is contained in:
FURK4NGG
2024-09-09 19:18:01 +03:00
committed by GitHub
parent 38ba096f32
commit 890a8e69a2
+2 -2
View File
@@ -19,9 +19,9 @@
// İçeriği dil tercihine göre yönlendirme // İçeriği dil tercihine göre yönlendirme
if (userLang.startsWith('tr')) { if (userLang.startsWith('tr')) {
window.location.href = '/hometr.html'; // Türkçe içerik window.location.href = '/hometr'; // Türkçe içerik
} else { } else {
window.location.href = '/home.html'; // İngilizce içerik window.location.href = '/home'; // İngilizce içerik
} }
}); });