Ga naar de inhoud
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('[data-link]').forEach(function (tab) {
tab.style.cursor = 'pointer';
tab.addEventListener('click', function () {
window.location.href = tab.getAttribute('data-link');
});
});
});