class ResumeSection extends HTMLElement { connectedCallback() { const title = this.getAttribute('title') || ''; const icon = this.getAttribute('icon') || 'file'; this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

${title}

`; } } customElements.define('resume-section', ResumeSection);