diff --git a/home/index.html b/home/index.html index b1dd3cd..c9855e7 100644 --- a/home/index.html +++ b/home/index.html @@ -22,18 +22,18 @@ @@ -46,7 +46,7 @@ menuItems.forEach(item => { item.addEventListener('mouseenter', () => { const subfolder = item.getAttribute('id'); - const imgSrc = `${subfolder}.png`; // Generating image path from subfolder name + const imgSrc = `./images/${subfolder}.png`; // Generating image path from subfolder name largeImage.src = imgSrc; imageContainer.style.opacity = 1; });