class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` AI Forge Features Solutions Healthcare AI Automation Generator Pricing Docs Log In Sign Up Free `; } } customElements.define('custom-navbar', CustomNavbar);