();
return (
@@ -90,7 +100,8 @@ function Signin({ providers }: SigninProps) {
placeholder="Email Address"
{...register("email")}
/>
- }>
+
+ } mt="4">
Continue with Email
diff --git a/website/types/env.d.ts b/website/types/env.d.ts
index 959662db..79fc51fc 100644
--- a/website/types/env.d.ts
+++ b/website/types/env.d.ts
@@ -2,7 +2,10 @@ declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: "development" | "production";
- NEXT_PUBLIC_CLOUDFARE_CAPTCHA_SITE_KEY: string;
+ NEXT_PUBLIC_CLOUDFLARE_CAPTCHA_SITE_KEY: string;
+ CLOUDFLARE_CAPTCHA_SERCERT_KEY: string;
}
}
}
+
+export {};