File size: 415 Bytes
973b24f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
// Gallery functionality
document.addEventListener('DOMContentLoaded', () => {
    console.log('PixelPond Gallery loaded');
    
    // Example of adding more images dynamically
    const loadMoreBtn = document.querySelector('button');
    if (loadMoreBtn) {
        loadMoreBtn.addEventListener('click', () => {
            alert('More images would be loaded here in a real implementation!');
        });
    }
});