class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` ColorlessCanvas Features Pricing Docs About `; } } customElements.define('custom-header', CustomHeader);