$w.onReady(function () {
$w("#LearnMoreButton").onClick(() => { // Make sure the ID matches the button's ID
// Send an event to Google Analytics when the button is clicked
gtag('event', 'click', { // Use 'click' as the event name for clarity
'event_category': 'User Engagement',
'event_label': 'Learn More Button Clicked' // Update this label to match the action
});
});
});