PrometheusGroup's picture
you hve created a fucking blank page!!! well done u stupid fuck
35b8cd4 verified
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);