File size: 456 Bytes
b7c00ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
```javascript
document.addEventListener('DOMContentLoaded', () => {
    // Simple animation for file icons
    document.querySelectorAll('.file-icon').forEach(icon => {
        icon.addEventListener('mouseenter', () => {
            icon.style.color = '#93c5fd';
        });
        icon.addEventListener('mouseleave', () => {
            icon.style.color = '#bfdbfe';
        });
    });
    
    // Initialize feather icons
    feather.replace();
});
```