class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 🎨 3D Magic Studio Features Gallery Pricing Docs Sign In Get Started `; } } customElements.define('custom-header', CustomHeader);