OneCosmicDev's picture
can you put some next.js?
da32bc7 verified
raw
history blame contribute delete
530 Bytes
// 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
});
}
});