existacial

document.querySelectorAll('.nav-link').forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); const href = this.getAttribute('href'); setTimeout(() => { window.location.href = href; }, 2000); }); });