class SiteFooter extends HTMLElement {
connectedCallback() {
if (this._initialized) return;
this._initialized = true;
this.className = 'site-footer';
this.innerHTML = `
<div class="footer-inner">
<span>© 2026 TelosDB</span>
<span>v0.3.0</span>
</div>
`;
}
}
customElements.define('site-footer', SiteFooter);