`;
// Initialize feather icons
import('https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js').then(() => {
feather.replace({ icons: this.shadowRoot.querySelectorAll('[data-feather]') });
});
// Add filter functionality
this.shadowRoot.querySelectorAll('.filter-btn').forEach(button => {
button.addEventListener('click', () => {
// Remove active class from all buttons
this.shadowRoot.querySelectorAll('.filter-btn').forEach(btn => {
btn.classList.remove('active');
});
// Add active class to clicked button
button.classList.add('active');
// In a real implementation, you would filter courses here
});
});
}
}
customElements.define('course-explorer', CourseExplorer);