"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
We would love to hear from you. Please fill out the form below or use our contact information.
Email: sales@techaro.lol