class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` LinkHive Features Pricing Templates Blog Log In Sign Up `; } } customElements.define('custom-navbar', CustomNavbar);