diff --git a/src/app/contact/ContactComponent.tsx b/src/app/contact/ContactComponent.tsx
new file mode 100644
index 0000000..6328f14
--- /dev/null
+++ b/src/app/contact/ContactComponent.tsx
@@ -0,0 +1,83 @@
+/* eslint-disable react/no-unescaped-entities */
+
+"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?
+
+
+
+ >
+ );
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 6aced37..9590451 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,85 +1,12 @@
-/* eslint-disable react/no-unescaped-entities */
+"use server";
-"use client";
+import ContactComponent from "./ContactComponent";
-import SubmitContact from "@/components/contact";
-import { useActionState } from "react";
-import ReCAPTCHA from "react-google-recaptcha";
-
-const RECAPTCHA_SITE_KEY = process.env.RECAPTCHA_SITE_KEY;
-
-export default function Contact() {
- const inputStyle = {
- backgroundColor: "#111",
- color: "#eee",
- borderWidth: 0,
- padding: "1rem",
- };
- const [state, formAction, pending] = useActionState(SubmitContact, null);
-
- if (!RECAPTCHA_SITE_KEY) {
- throw new Error("ReCAPTCHA not configured correctly");
+export default async function ContactPage() {
+ const recaptchaSiteKey = process.env.RECAPTCHA_SITE_KEY;
+ if (!recaptchaSiteKey) {
+ console.error("ReCAPTCHA site key is not set");
+ throw new Error("ReCAPTCHA not correctly configured");
}
-
- return (
- <>
- Need to get in touch?
-
-
-
- >
- );
+ return ;
}