2026-02-17 17:10:18 +00:00

18 lines
574 B
JavaScript

// Main Interactivity
document.addEventListener('DOMContentLoaded', function() {
console.log('Masakan Nusantara Ibu Tini - Ready');
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth'
});
}
});
});
});