Zakay's picture
Clone esse site:
871e4b0 verified
raw
history blame contribute delete
530 Bytes
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle functionality will be handled in navbar component
console.log('SkyWork Clone loaded!');
// 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'
});
});
});
});