Compare commits
2 Commits
792d71523c
...
ac420f1419
Author | SHA1 | Date | |
---|---|---|---|
ac420f1419 | |||
0856cc3152 |
@ -1,5 +1,7 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {};
|
||||
const nextConfig: NextConfig = {
|
||||
output: "standalone",
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
83
src/app/contact/ContactComponent.tsx
Normal file
83
src/app/contact/ContactComponent.tsx
Normal file
@ -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?
|
||||
<br />
|
||||
<br />
|
||||
<form
|
||||
action={formAction}
|
||||
style={{ display: "flex", flexDirection: "column", gap: "1rem" }}
|
||||
>
|
||||
<input
|
||||
style={inputStyle}
|
||||
type="text"
|
||||
name="name"
|
||||
placeholder="Your Name"
|
||||
required
|
||||
/>
|
||||
<input
|
||||
style={inputStyle}
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="Your Email"
|
||||
required
|
||||
/>
|
||||
<textarea
|
||||
style={{ ...inputStyle, resize: "none", height: "5rem" }}
|
||||
name="message"
|
||||
placeholder="Your Message"
|
||||
required
|
||||
></textarea>
|
||||
{state && (
|
||||
<span
|
||||
style={{
|
||||
padding: "1rem",
|
||||
backgroundColor: "error" in state ? "#f003" : "#0f03",
|
||||
}}
|
||||
>
|
||||
{"error" in state && state.error}
|
||||
{"success" in state && "Submitted successfully!"}
|
||||
</span>
|
||||
)}
|
||||
<ReCAPTCHA sitekey={recaptchaSiteKey} theme="dark" />
|
||||
<button
|
||||
type="submit"
|
||||
style={{
|
||||
...inputStyle,
|
||||
backgroundColor: pending ? "#333" : "#111",
|
||||
cursor: pending ? "default" : "pointer",
|
||||
}}
|
||||
onMouseEnter={(e) => {
|
||||
if (!pending) e.currentTarget.style.backgroundColor = "#333";
|
||||
}}
|
||||
onMouseLeave={(e) => {
|
||||
if (!pending) e.currentTarget.style.backgroundColor = "#111";
|
||||
}}
|
||||
disabled={pending}
|
||||
>
|
||||
{pending ? "Sending..." : "Submit"}
|
||||
</button>
|
||||
</form>
|
||||
</>
|
||||
);
|
||||
}
|
@ -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?
|
||||
<br />
|
||||
<br />
|
||||
<form
|
||||
action={formAction}
|
||||
style={{ display: "flex", flexDirection: "column", gap: "1rem" }}
|
||||
>
|
||||
<input
|
||||
style={inputStyle}
|
||||
type="text"
|
||||
name="name"
|
||||
placeholder="Your Name"
|
||||
required
|
||||
/>
|
||||
<input
|
||||
style={inputStyle}
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="Your Email"
|
||||
required
|
||||
/>
|
||||
<textarea
|
||||
style={{ ...inputStyle, resize: "none", height: "5rem" }}
|
||||
name="message"
|
||||
placeholder="Your Message"
|
||||
required
|
||||
></textarea>
|
||||
{state && (
|
||||
<span
|
||||
style={{
|
||||
padding: "1rem",
|
||||
backgroundColor: "error" in state ? "#f003" : "#0f03",
|
||||
}}
|
||||
>
|
||||
{"error" in state && state.error}
|
||||
{"success" in state && "Submitted successfully!"}
|
||||
</span>
|
||||
)}
|
||||
<ReCAPTCHA sitekey={RECAPTCHA_SITE_KEY} theme="dark" />
|
||||
<button
|
||||
type="submit"
|
||||
style={{
|
||||
...inputStyle,
|
||||
backgroundColor: pending ? "#333" : "#111",
|
||||
cursor: pending ? "default" : "pointer",
|
||||
}}
|
||||
onMouseEnter={(e) => {
|
||||
if (!pending) e.currentTarget.style.backgroundColor = "#333";
|
||||
}}
|
||||
onMouseLeave={(e) => {
|
||||
if (!pending) e.currentTarget.style.backgroundColor = "#111";
|
||||
}}
|
||||
disabled={pending}
|
||||
>
|
||||
{pending ? "Sending..." : "Submit"}
|
||||
</button>
|
||||
</form>
|
||||
</>
|
||||
);
|
||||
return <ContactComponent recaptchaSiteKey={recaptchaSiteKey} />;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user