class CustomFooter extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

© 2023 Checkmate Nexus. All rights reserved.

Made with by AI.

`; } } customElements.define('custom-footer', CustomFooter);