class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` ProposalCraft Features Templates Pricing New Proposal My Proposals Sample Proposal `; } } customElements.define('custom-navbar', CustomNavbar);