From b78d0cc47d9297f85811bd490370c34c62b07d75 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Sat, 5 Apr 2025 14:38:42 +0300 Subject: [PATCH] Update home_en.html --- home_en.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/home_en.html b/home_en.html index afdbc3a..f80947c 100644 --- a/home_en.html +++ b/home_en.html @@ -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 öğ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();