document.addEventListener('DOMContentLoaded', function () { const menuButtons = document.querySelectorAll('.menu-button[data-target]'); menuButtons.forEach((button) => { button.addEventListener('click', () => { const target = button.getAttribute('data-target'); if (target) { window.location.href = target; } }); }); });