const homeFunction = () => { const navbuttonHome = document.getElementById('navbutton-home'); const navbuttonOffers = document.getElementById('navbutton-offers'); navbuttonHome.addEventListener('click', () => { window.location.href = '/home'; }); navbuttonOffers.addEventListener('click', () => { window.location.href = '/offers'; }); }; homeFunction();