
{
new bootstrap.Modal(modal);
});
// Add click event listener to images with class "enlarge-modal"
const images = document.querySelectorAll('.enlarge-modal');
images.forEach(image => {
image.addEventListener('click', () => {
const modalImg = document.querySelector('.modal-img');
const modalTitle = document.querySelector('#imageModalLabel');
modalImg.src = image.src;
modalImg.alt = image.alt;
modalTitle.textContent = image.alt;
});
});