// whs2-page-2.jsx
// Warehousing & Logistics Industry Page — Part 2
// WhsSolutions (Solutions-for-this-sector with warehouse schematic)
// WhsCaseStudy (featured project with photo slider)
// ============================================================
// WhsFacilitySchematic — flat-roof distribution facility with
// rooftop solar, high-bay LED lighting (interior), BESS pad,
// dock doors, service entrance, and front-yard fleet/EV charging.
// 5 zones · 01 Audit · 02 LED · 03 Solar · 04 Battery · 05 EV/Forklift
// ============================================================
const WhsFacilitySchematic = ({ activeIndex }) => {
const W = 540;
const H = 360;
const amber = 'rgba(233,199,134,1)';
const amberFill= 'rgba(233,199,134,0.18)';
const ink = 'rgba(255,255,255,0.55)';
const inkDim = 'rgba(255,255,255,0.32)';
const inkFaint = 'rgba(255,255,255,0.18)';
const inkText = 'rgba(255,255,255,0.62)';
// Building footprint (flat-roof warehouse) — x 70..470, y 100..282
const zones = [
// 01 Energy Audits — whole facility ring
{ id: 0, label: '01', cx: 270, cy: 200,
hl: },
// 02 High-Bay LED — interior ceiling row
{ id: 1, label: '02', cx: 270, cy: 132,
hl: },
// 03 Solar PV — flat rooftop
{ id: 2, label: '03', cx: 270, cy: 92,
hl: },
// 04 Battery — BESS pad
{ id: 3, label: '04', cx: 502, cy: 244,
hl: },
// 05 EV / Forklift Charging — front apron
{ id: 4, label: '05', cx: 250, cy: 308,
hl: },
];
return (
);
};
// ============================================================
// WhsSolutions — Soft Green. Mirrors Municipal "Solutions for
// this sector" layout exactly: header + schematic on left,
// 5-row interactive solutions list on right.
// ============================================================
const WhsSolutions = () => {
const rows = [
{ idx: '01', icon: 'clipboard-list', name: 'Energy Audits', zone: 'Whole facility', tag: 'Establish the documented baseline.', why: 'A commercial energy audit produces the facility-specific baseline that sizes every subsequent measure — load profile, demand-charge exposure, refrigeration efficiency, and the strongest first-dollar opportunities.', href: '/solutions/energy-audits/' },
{ idx: '02', icon: 'lightbulb', name: 'High-Bay LED Lighting', zone: 'Interior · 24/7', tag: 'The fastest payback in the building.', why: 'High-bay LED retrofits in 24/7 warehouses typically pay back in two to four years through reduced electricity, longer maintenance intervals, and reduced HVAC heat-rejection load on cooled spaces.', href: '/solutions/led-lighting/' },
{ idx: '03', icon: 'sun', name: 'Commercial Solar', zone: 'Rooftop', tag: 'Large roofs, large arrays.', why: 'Modern distribution facilities have the largest unobstructed flat roofs in any commercial sector — well-suited to ballasted PV arrays that offset daytime base load and reduce exposure to rising utility rates.', href: '/solutions/commercial-solar/' },
{ idx: '04', icon: 'battery-charging', name: 'Battery Storage', zone: 'Mechanical pad', tag: 'Cut peak demand charges.', why: 'Battery storage discharges during short peak events to hold metered demand below the threshold that sets the monthly bill — operating cost reductions independent of energy savings, plus resilience for cold-chain and automation systems.', href: '/solutions/battery-storage/' },
{ idx: '05', icon: 'plug-zap', name: 'EV / Forklift Charging', zone: 'Yard · dock apron', tag: 'Fleet electrification on a managed load.', why: 'Truck-fleet, last-mile, and forklift charging — planned around available service capacity, smart load management, and fleet replacement schedules rather than emergency service upgrades under deadline pressure.', href: '/solutions/ev-charging/' },
];
const [active, setActive] = React.useState(0);
return (
Solutions for this sector
What warehousing & logistics projects typically involve.
A complete warehousing energy programme begins with a documented
audit and proceeds through high-bay LED, rooftop solar, battery
storage, and EV/forklift charging — sequenced for payback velocity
and operational continuity over a multi-year capital plan.