Freemantaj's picture
создай мне сайт для услуг ИТ
54c5ca6 verified
Raw
History Blame Contribute Delete
482 Bytes
document.addEventListener('DOMContentLoaded', () => {
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle functionality will be handled by the navbar component
});