Add this into your Js your code will work
const links = document.querySelectorAll('.links')
links.forEach(link => {
link.addEventListener('click', () => {
dropDownMenu.classList.remove('open')
toggleBtnIcon.classList = 'fa-solid fa-bars'
}); });