quick contact:

1 Comment

  • A WordPress Commenter September 22, 2024

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Leave a Reply

document.addEventListener("DOMContentLoaded", function () { const popup = document.getElementById("techPopup"); const closeBtn = document.querySelector(".popup-close"); if (!popup) return; let shownTimes = 0; function showPopup(delay) { setTimeout(() => { if (shownTimes < 3) { popup.style.display = "flex"; shownTimes++; } }, delay); } showPopup(10000); // 10 sec showPopup(25000); // +15 sec showPopup(55000); // +30 sec closeBtn.addEventListener("click", () => { popup.style.display = "none"; }); });