fernando-bold's picture
"use client";
a38b002 verified
raw
history blame contribute delete
520 Bytes
document.addEventListener('DOMContentLoaded', function() {
// Initialize any global functionality here
console.log('Solar Power Simulator Suite initialized');
// 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'
});
});
});
});