class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` سیستم ارتباط امن معرفی سیستم ویژگیها معماری پیادهسازی تماس `; } } customElements.define('custom-navbar', CustomNavbar);