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