class Header extends HTMLElement { constructor() { super(); } connectedCallback() { const currentPage = window.location.pathname.split('/').pop() || 'index.html'; this.innerHTML = ` `; } } customElements.define('header-component', Header);