// Example location data const locationData = { 'digital-hub': { text: '10-13 Thomas Street', imageUrl: '/public/images/locations/digital-hub.png' }, 'pallas-projects': { text: '115-117, The Coombe, The Liberties, Dublin, D08 A970', imageUrl: 'public/images/locations/pallas.png' } // Add more locations as needed }; // Function to update the content function updateLocationContent(locationKey) { const location = locationData[locationKey]; if (location) { document.getElementById('location-text').innerText = location.text; document.getElementById('location-img').src = location.imageUrl; } } // Add event listeners to buttons document.querySelectorAll('.location-button').forEach(button => { button.addEventListener('click', (event) => { const locationKey = event.currentTarget.getAttribute('data-location'); updateLocationContent(locationKey); }); });