"use client"; import SubmitContact from "@/components/contact"; import { useActionState } from "react"; import ReCAPTCHA from "react-google-recaptcha"; export default function ContactComponent({ recaptchaSiteKey, }: { recaptchaSiteKey: string; }) { const inputStyle = { backgroundColor: "#111", color: "#eee", borderWidth: 0, padding: "1rem", }; const [state, formAction, pending] = useActionState(SubmitContact, null); return ( <> Need to get in touch?

{state && ( {"error" in state && state.error} {"success" in state && "Submitted successfully!"} )} ); }