Prototype69's picture
give me the files so that i can open project in any other ide
b7c00ac verified
raw
history blame contribute delete
456 Bytes
```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();
});
```