File size: 530 Bytes
b0496cd
 
 
da32bc7
 
 
 
b0496cd
da32bc7
 
 
 
 
 
 
 
 
 
 
 
b0496cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

// Form handling would go here
document.addEventListener('DOMContentLoaded', () => {
    // Initialize feather icons
    if (window.feather) {
        feather.replace();
    }

    // Initialize Vanta.js effect if the element exists
    if (document.getElementById('vanta-background') && window.VANTA) {
        VANTA.NET({
            el: "#vanta-background",
            color: 0x102A43,
            backgroundColor: 0x010A13,
            points: 12,
            maxDistance: 20,
            spacing: 15
        });
    }
});