class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
CLAWDBOTC2
`; } } customElements.define('custom-navbar', CustomNavbar);