Homepage Meeting Section- Change "Call to Action"
<script>
document.addEventListener('DOMContentLoaded', function () {
const links = document.querySelectorAll('a.btn-pill[href="/upcoming-events"]');
links.forEach(link => {
if (link.textContent.trim() === 'View Board Meetings') {
link.textContent = 'View more';
}
});
});
</script>