| 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' | |
| }); | |
| }); | |
| }); | |
| }); |