'use client';
import ReCaptcha from '@matt-block/react-recaptcha-v2';
import Link from 'next/link';
export default function Page() {
return (
<>
Please check result in console
console.log(`Successful, result is ${captcha}`)}
onError={() =>
console.log('Something went wrong, check your conenction')
}
onExpire={() => console.log('Verification has expired, re-verify.')}
/>
Docs: Google ReCaptcha
>
);
}