Ayk Martirosyan

My name is Ayk. I design architecture by profession, create digital products on Notion, write on my blog, build websites and do many other things that I am passionate about.

Courses

No items found.
script> document.addEventListener("DOMContentLoaded", function () { const modalShown = sessionStorage.getItem('modalShown'); document.querySelectorAll('.template-card').forEach(item => { item.addEventListener('click', function (e) { e.preventDefault(); const url = this.getAttribute('data-url'); const modal = document.getElementById('templateModal'); if (!modal) { console.error("Modal not found"); return; } if (!modalShown) { sessionStorage.setItem('modalShown', 'true'); modal.classList.add('active'); setTimeout(() => { modal.classList.remove('active'); window.open(url, '_blank'); }, 3000); } else { window.open(url, '_blank'); } }); }); });