const GAS_ENDPOINT='https://script.google.com/macros/s/AKfycbzbBddQG6HyUAIuIyKnjWA5doiqbVOjcUD3JX6ogUssevkdg9QxTthhbcPdjrhu-wQK/exec'; function Contact(){ const {Tag,Button,Input,Select}=window.PolychemDesignSystem_373bbb; const isMobile=window.useIsMobile(); const isNarrow=window.useIsNarrowDesktop(); const [sent,setSent]=React.useState(false); const [sending,setSending]=React.useState(false); const formRef=React.useRef(null); const handleSubmit=async()=>{ if(!formRef.current||sending)return; const inputs=formRef.current.querySelectorAll('input,select'); const [company,email,industry,requirement]=inputs; if(!company.value||!email.value){ company.style.borderColor='var(--accent-primary)'; email.style.borderColor='var(--accent-primary)'; return; } setSending(true); const payload={company:company.value,email:email.value,industry:industry.value,requirement:requirement.value,submittedAt:new Date().toISOString()}; try{ await fetch(GAS_ENDPOINT,{method:'POST',mode:'no-cors',headers:{'Content-Type':'text/plain;charset=utf-8'},body:JSON.stringify(payload)}); }catch(e){} setSending(false); setSent(true); }; return (
Connect With Us

Ready to elevate your coating quality?

Our team provides technical guidance and tailored pigment paste solutions for your most complex challenges.

Nalneesh Saxena — Proprietor
9711202272 / 9811202272 · saxena.pcap@gmail.com
Mayank Saxena — CEO
9654240004 / 9711202972 · saxenamcc@gmail.com
New Delhi, Delhi-110082
{sent?(
Thank you.
Our team will be in touch shortly.
):(
)}
); } window.Contact=Contact;