class BackButton extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
`;
this.shadowRoot.getElementById('backBtn').addEventListener('click', () => {
window.location.href = 'index.html';
});
}
}
customElements.define('back-button', BackButton);