Molbap's picture
Molbap HF Staff
update
30e6a80
raw
history blame
624 Bytes
// Main JavaScript file for Scaling Insanity
import './style.css';
// Import any additional functionality
console.log('Scaling Insanity loaded');
// Add any custom JavaScript functionality here
document.addEventListener('DOMContentLoaded', function() {
// Initialize syntax highlighting for code blocks
if (window.hljs) {
hljs.highlightAll();
}
// Initialize any interactive components
initializeInteractiveComponents();
});
function initializeInteractiveComponents() {
// This will be expanded as we add interactive components
console.log('Interactive components initialized');
}