File size: 745 Bytes
f1ed14e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
document.addEventListener('DOMContentLoaded', () => {
    // Add any interactive elements here
    const heartButtons = document.querySelectorAll('[data-feather="heart"]');
    
    heartButtons.forEach(button => {
        button.addEventListener('click', (e) => {
            e.target.classList.toggle('fill-current');
            e.target.classList.toggle('text-blossom-500');
        });
    });

    // Smooth scroll for anchor links
    document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        anchor.addEventListener('click', function (e) {
            e.preventDefault();
            document.querySelector(this.getAttribute('href')).scrollIntoView({
                behavior: 'smooth'
            });
        });
    });
});