Update home_en.html

This commit is contained in:
FURK4NGG
2025-04-05 14:38:42 +03:00
committed by GitHub
parent 3a3655866b
commit b78d0cc47d
+15 -1
View File
@@ -384,7 +384,21 @@
window.onload = function() {
if (isMobileDevice()) {
var circles = document.getElementsByClassName('circle');
for (var i = 0; i < circles.length; i++) {circles[i].style.display = 'none';}}};
for (var i = 0; i < circles.length; i++) {circles[i].style.display = 'none';}}
// Mobilde görünmesi için <a> öğesini oluştur
var link = document.createElement('a');
link.id = 'toskills';
link.className = 'menu';
link.href = 'https://sayfaurl_tr';
link.textContent = 'Yetenekler';
// links-container içine ekle
var container = document.querySelector('.links-container');
if (container) {
container.appendChild(link);
}
};
const darkmode = new Darkmode(options);
darkmode.showWidget();
</script>