wip
All checks were successful
Build / build (push) Successful in 2m37s

This commit is contained in:
Nareshkumar Rao 2025-04-02 23:05:35 +02:00
parent 67cc24a9d9
commit 456edfba07

View File

@ -3,6 +3,10 @@
import ContactComponent from "./ContactComponent";
export default async function ContactPage() {
const recaptchaSiteKey = process.env["RECAPTCHA_SITE_KEY"];
const recaptchaSiteKey = await getSiteKey();
return <ContactComponent recaptchaSiteKey={recaptchaSiteKey} />;
}
async function getSiteKey() {
return process.env.RECAPTCHA_SITE_KEY;
}