Newer
Older
TelosDB / src / frontend / components / site-footer.js
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 10 hours ago 404 bytes style: Implement High-Contrast Minimalism UI & feat: Hybrid Search (FTS5 BM25)
class SiteFooter extends HTMLElement {
  connectedCallback() {
    if (this._initialized) return;
    this._initialized = true;
    this.className = 'site-footer';
    this.innerHTML = `
      <div class="footer-inner">
        <span>&copy; 2026 TelosDB CORP</span>
        <span style="letter-spacing:0.1em">V0.3.5-HUD</span>
      </div>
    `;
  }
}

customElements.define('site-footer', SiteFooter);