class Header extends HTMLElement { constructor() { super(); } connectedCallback() { const currentPage = window.location.pathname.split('/').pop() || 'index.html'; this.innerHTML = ` Netify Automating Networks, Accelerating Growth Home About Us Products & Services Pricing Contact `; } } customElements.define('header-component', Header);