function Industries() {
return (
§ 03 · Industries we serve
Wherever there's a hazardous zone, an SSE part earns its keep.
Our components ship into some of the most demanding industrial environments in India — refineries, chemical plants, textile mills, power stations, pharmaceutical facilities and beyond.
{INDUSTRIES.map((ind, i) => (
))}
);
}
function IndustryCell({ ind, idx }) {
const [hover, setHover] = React.useState(false);
const col = idx % 4;
const row = Math.floor(idx / 4);
return (
setHover(true)}
onMouseLeave={() => setHover(false)}
style={{
padding: '36px 32px',
borderRight: col < 3 ? '1px solid var(--line)' : 'none',
borderBottom: row < 1 ? '1px solid var(--line)' : 'none',
background: hover ? 'var(--navy)' : 'transparent',
color: hover ? 'var(--paper)' : 'var(--navy)',
transition: 'all 0.35s cubic-bezier(0.4,0,0.2,1)',
position: 'relative',
cursor: 'default',
minHeight: 220,
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
}}>
{String(idx + 1).padStart(2, '0')}
{ind.code}
{hover && (
)}
);
}
Object.assign(window, { Industries });