function Hero() { const [wordIdx, setWordIdx] = React.useState(0); const rotWords = ['Precision.', 'Reliability.', 'Durability.', 'Integrity.']; React.useEffect(() => { const t = setInterval(() => setWordIdx(i => (i + 1) % rotWords.length), 2400); return () => clearInterval(t); }, []); return (
{/* Animated hexagon backdrop */} {/* Gradient wash */}
{/* Top rail */}
Est. Silvassa · India · Flameproof & Industrial Electrical
Now dispatching · 48h window
{/* Hero headline */}

Precision components engineered for{' '}

{/* Sub */}

Sakshi Saurabh Enterprises manufactures the complete range of flameproof electrical spare parts, precision plastic, and silicone products — trusted by OEMs, refineries and industrial plants across India and internationally.

PDF · 10 MB · Full catalogue
{/* Stats marquee at bottom */}
); } function RotatingWord({ words, idx }) { return ( {words.map((w, i) => ( {w} ))} ); } // Animated hexagon backdrop — subtle kinetic function HexBackdrop() { const canvasRef = React.useRef(null); React.useEffect(() => { const canvas = canvasRef.current; if (!canvas) return; const ctx = canvas.getContext('2d'); let raf; let hexes = []; const resize = () => { const dpr = window.devicePixelRatio || 1; const rect = canvas.getBoundingClientRect(); canvas.width = rect.width * dpr; canvas.height = rect.height * dpr; ctx.scale(dpr, dpr); buildHexes(rect.width, rect.height); }; const buildHexes = (w, h) => { hexes = []; const size = 42; const rowH = size * 1.5; const colW = size * Math.sqrt(3); const cols = Math.ceil(w / colW) + 2; const rows = Math.ceil(h / rowH) + 2; for (let r = 0; r < rows; r++) { for (let c = 0; c < cols; c++) { const x = c * colW + (r % 2 ? colW / 2 : 0); const y = r * rowH; hexes.push({ x, y, size, phase: Math.random() * Math.PI * 2, speed: 0.3 + Math.random() * 0.4 }); } } }; const drawHex = (x, y, size, alpha) => { ctx.beginPath(); for (let i = 0; i < 6; i++) { const a = (Math.PI / 3) * i - Math.PI / 2; const px = x + size * Math.cos(a); const py = y + size * Math.sin(a); if (i === 0) ctx.moveTo(px, py); else ctx.lineTo(px, py); } ctx.closePath(); ctx.strokeStyle = `rgba(10, 26, 62, ${alpha})`; ctx.lineWidth = 1; ctx.stroke(); }; let start = performance.now(); const tick = (t) => { const elapsed = (t - start) / 1000; const rect = canvas.getBoundingClientRect(); ctx.clearRect(0, 0, rect.width, rect.height); hexes.forEach(h => { const pulse = (Math.sin(elapsed * h.speed + h.phase) + 1) / 2; const alpha = 0.03 + pulse * 0.06; drawHex(h.x, h.y, h.size * 0.9, alpha); }); raf = requestAnimationFrame(tick); }; resize(); window.addEventListener('resize', resize); raf = requestAnimationFrame(tick); return () => { cancelAnimationFrame(raf); window.removeEventListener('resize', resize); }; }, []); return ( ); } function StatMarquee() { const items = [ '31+ Years of Manufacturing Expertise', '48-Hour Dispatch Guarantee', 'A to Z Solutions — KG to PG Components', 'Made in Silvassa · India', 'Flameproof · Plastic · Silicone', '100+ Precision-Engineered SKUs', 'Exporting Globally from India', 'IEC / IS Standard Compliant', ]; const doubled = [...items, ...items, ...items]; return (
{doubled.map((item, i) => (
{item}
))}
); } Object.assign(window, { Hero });