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

Get In Touch

Connect with our team for collaborations, inquiries, or to learn more about our technology

Send Us a Message

Contact Information

Email

contact@yappertar-ai.com

Join Our Community

Be part of the quantum AI revolution. Connect with other developers, researchers, and enthusiasts.

Join Telegram Group
`; } } customElements.define('custom-contact', CustomContact);