1 interface ContactForm {
2 name: string;
3 email: string;
4 message: string;
5 }
6  
7 async function sendMessage(data: ContactForm): Promise {
8 // Contact form will be rendered here
9

Error: Contact form not found.

10 }