ContactMe.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<ContactComponent />
<Contact_Me/>
contact.description
/**
Feel free to reach out to me for any inquiries or collaboration opportunities. I'll get back to you as soon as possible.
*/
class ContactInfo
class ContactInfo {
constructor() {
this.message = "Feel free to reach out to me for any inquiries or collaboration opportunities. I'll get back to you as soon as possible.";
}
async sendMessage() {
return new Promise(resolve => {
setTimeout(() => {
resolve("I'll get back to you soon!");
}, 1000);
});
}
}
contactMethods.map()
$ echo "Thank you for visiting my terminal!"
Contact Me
Feel free to reach out to me for any inquiries or collaboration opportunities. I'll get back to you as soon as possible.