class CustomSidebar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
⚠️ 100% Indépendant - Aucun lien avec DeepSite
`; } } customElements.define('custom-sidebar', CustomSidebar);