import { img10 } from "./asset" import ReCAPTCHA from "react-google-recaptcha" import useRecaptcha from "./Recaptcha/useRecaptcha" import { useLocation } from "react-router-dom" import { useEffect } from "react" const ContactForm = () => { const { capchaToken, handleRecaptcha } = useRecaptcha() const location = useLocation() useEffect(() => { if (location.hash) { const element = document.querySelector(location.hash) if (element) { element.scrollIntoView({ behavior: "smooth" }) } } }, [location]) return (
{/* Left Section */}

Isi formulir di samping ini dan kami akan menghubungi Anda secepat mungkin

Kami percaya bahwa kolaborasi adalah kunci kesuksesan. Hubungi kami hari ini, dan mari wujudkan masa depan bisnis Anda bersama Rekan AI!

{/* Form Section */}

Hubungi Tim Terbaik Kami

Silakan isi data diri Anda pada formulir di bawah ini

{ e.target.value = e.target.value.replace(/[^0-9]/g, "") }} />
) } export default ContactForm