// Example web component — replace or delete this file. class SiteGreeting extends HTMLElement { connectedCallback() { const name = this.getAttribute('name') || 'world' this.textContent = `Hello, ${name}!` } } customElements.define('site-greeting', SiteGreeting)