// Navigation Bar Component class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 🎨 PixelForge Studio File Edit Image Layer Filter View `; } } customElements.define('custom-navbar', CustomNavbar);