/**
* Site Footer Component
* Footer with configurable accordion sections and link columns
*/
class SiteFooter extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
}
connectedCallback() {
this.render();
}
render() {
this.shadowRoot.innerHTML = `
`;
}
}
customElements.define("site-footer", SiteFooter);