Newer
Older
TelosDB / src / frontend / components / site-footer.js
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 16 hours ago 362 bytes chore: add frontend components, scripts, and journal files
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);