"use client"; import React, { useState } from 'react'; import contactForm from '@/actions/contact'; const ContactPage = () => { const [message, setMessage] = useState(null); const callback = async (formData) => { await contactForm(formData); setMessage("Our intrepid team of code monkeys will be looking at this as soon as possible!"); } return ( <>

Contact Us

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

Contact Form

{message !== null && ( <>

Thanks!

{message}

)}
); }; export default ContactPage;