File size: 612 Bytes
30e6a80 c0a0e96 3a3c4d7 c0a0e96 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
// Main JavaScript file for Scaling Insanity
import './style.css';
// Import any additional functionality
console.log('blog 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');
} |