class CustomContact extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Get In Touch

Let's work together on your next project. Whether you have a question or just want to say hi, I'll try my best to get back to you!

Say Hello
`; } } customElements.define('custom-contact', CustomContact);