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