/* Build Core Supply — Website UI Kit · components part 2 */ const { useState: useState2, useRef: useRef2 } = React; const PRODUCTS=[ ["Birla Shakti Cement","Cement","birla-shakti-cement","price","320","/Bag"], ["Ambuja 53 Grade Cement","Cement","ambuja-cement","latest"], ["Rajuri TMT Steel Bars","Steel","rajuri-tmt","latest"], ["Shree Om TMT Steel Bar","Steel","shree-om-tmt","latest"], ["MS Round Pipe","Steel","ms-round-pipe","latest"], ["Industrial Mild Steel Plates","Steel","mild-steel-plate","latest"], ["4mm Gray HB Wire","Steel","hb-wire","latest"], ["Building MS Scaffolding","Steel","scaffolding","latest"], ["Cement Door Frame","Frames","cement-door-frame","latest"], ["Concrete Window Frame","Frames","cement-window-frame","latest"], ["Partition Walls AAC Block","Blocks","aac-block","latest"], ["Commercial Shops Rental","Rental","commercial-rental","latest"], ]; const CATS=["All","Cement","Steel","Frames","Blocks","Rental"]; function Products({onEnquire, onOpen, compact}){ const [cat,setCat]=useState2("All"); const list = cat==="All"?PRODUCTS:PRODUCTS.filter(p=>p[1]===cat); return (
{!compact &&
02
Our Catalogue

A Complete Range of Building Materials

}
{CATS.map(c=>( ))}
{list.map(([nm,c,img,kind,pr,u])=>(
onOpen&&onOpen(img)} style={onOpen?{cursor:'pointer'}:null}>
{nm}/
{c}
{nm}
{kind==="price" ?
{pr} {u}
:
Get Latest Price
}
))}
); } /* ---------------- Projects ---------------- */ const PROJECTS=[ ["Deepak Builders","Star World","project-starworld"], ["Deepak Builders","Three Leaves","project-threeleaves"], ["India Bulls","Chimneys","capacity"], ]; function Projects({onOpen}){ return (
About Founders

Our Latest Works

{PROJECTS.map(([k,t,img],i)=>(
onOpen&&onOpen(i)} style={onOpen?{cursor:'pointer'}:null}> {t}/
{k}

{t}

))}
); } /* ---------------- Contact: Quote form + FAQ ---------------- */ const FAQS=[ ["What types of building materials do you supply?","We supply a wide range of high-quality building materials, including TMT steel, PEB shades, cement, fabrication steel and construction essentials to meet diverse project needs."], ["Do you provide custom steel fabrication services?","Yes, we specialise in custom steel fabrication tailored to your project requirements, ensuring precision, durability and structural integrity."], ["Can you assist with workforce staffing for projects?","Absolutely. We provide skilled and experienced workers — welders, fabricators, site supervisors and more — to ensure smooth execution."], ["Which areas do you serve?","We operate across Maharashtra with offices in Sinnar and Nashik (Gangapur Road), delivering materials with effective & timely delivery."], ]; function Faq(){ const [open,setOpen]=useState2(0); return (
Learn More From

Frequently Asked Questions

{FAQS.map(([q,a],i)=>(

{a}

))}
); } function QuoteForm({prefill}){ const [sent,setSent]=useState2(false); const subj=useRef2(); React.useEffect(()=>{ if(prefill && subj.current){ subj.current.value = `Enquiry: ${prefill}`; subj.current.focus(); } },[prefill]); return (
Request a Quote

Ready to Work Together?

Build a project with us — tell us what you need.

{sent ?
Thank you! Your enquiry has been received — our team will share the latest price shortly.
:
{e.preventDefault();setSent(true);}}>