| class CustomFooter extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| footer { | |
| background: #16213E; | |
| padding: 1rem; | |
| color: #A0AEC0; | |
| text-align: center; | |
| margin-top: auto; | |
| } | |
| </style> | |
| <footer> | |
| <p>MCP Toolkit © ${new Date().getFullYear()}</p> | |
| </footer> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-footer', CustomFooter); |