class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Sunshine Snap Home Gallery Palettes About Home Gallery Palettes About `; } } customElements.define('custom-header', CustomHeader);