class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` CodeCanvas Features Templates Docs Pricing Run Code Sign In `; feather.replace({ shadowRoot: this.shadowRoot }); } } customElements.define('custom-navbar', CustomNavbar);