import React from 'react'; const ContactPage = () => { async function contactForm(formData) { "use server"; const rawFormData = { name: formData.get('name'), email: formData.get('email'), message: formData.get('message'), }; console.log(rawFormData); }; return (

Contact Techaro Computing Canada

Get in Touch

We would love to hear from you. Please fill out the form below or use our contact information.

Contact Information

Email: sales@techaro.lol

Phone: (123) 456-7890

Address: 123 Tech Street, Toronto, ON M5V 1J2

Contact Form

); }; export default ContactPage;