// mun-page-2.jsx
// Municipal & Institutional Industry Page — Part 2
// MunSolutions (green Solutions-for-this-sector with facility schematic)
// MunCaseStudy (featured project with photo slider)
// ============================================================
// MunFacilitySchematic — mirrors the F&B "cream" schematic exactly
// (building outline, pitched roof with side-profile PV panels,
// outdoor BESS pad, service entrance). The interior LED zone from
// the F&B variant is swapped for an EV CHARGING zone in the parking
// stall area in front of the building.
// 5 zones · 01 Audit · 02 EV · 03 Solar PV · 04 Battery · 05 Electrical
// ============================================================
const MunFacilitySchematic = ({ 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)';
const zones = [
// 01 Energy Audits — whole facility ring
{ id: 0, label: '01', cx: 270, cy: 200,
hl: },
// 02 EV Charging — front parking stalls
{ id: 1, label: '02', cx: 250, cy: 308,
hl: },
// 03 Solar PV — rooftop
{ id: 2, label: '03', cx: 270, cy: 96,
hl: },
// 04 Battery — BESS pad
{ id: 3, label: '04', cx: 502, cy: 244,
hl: },
// 05 Electrical Infrastructure — service entrance / switchgear
{ id: 4, label: '05', cx: 110, cy: 246,
hl: },
];
return (
);
};
// ============================================================
// MunSolutions — Soft Green. Mirrors the F&B "Solutions for this
// sector" layout exactly: header + schematic on left, 5-row
// interactive solutions list on right.
// ============================================================
const MunSolutions = () => {
const rows = [
{ idx: '01', icon: 'clipboard-list', name: 'Energy Audits', zone: 'Whole facility', tag: 'Establish the documented baseline.', why: 'Energy audits create the facility-specific baseline required for BEPS reporting, net-zero tracking, and grant applications. The reference point every subsequent measure is sized against.', href: '/solutions/energy-audits/' },
{ idx: '02', icon: 'plug-zap', name: 'EV Charging', zone: 'Parking · fleet yard', tag: 'Fleet electrification on regulatory timelines.', why: 'Fleet electrification and public charging infrastructure — planned proactively against fleet replacement schedules and BEPS positioning for municipal parking facilities.', href: '/solutions/ev-charging/' },
{ idx: '03', icon: 'sun', name: 'Commercial Solar', zone: 'Rooftop', tag: 'Reduce GHG intensity and operating cost.', why: 'Rooftop solar reduces electricity operating costs and produces documented emissions reductions for BEPS and net-zero reports.', href: '/solutions/commercial-solar/' },
{ idx: '04', icon: 'battery-charging', name: 'Battery Storage', zone: 'Mechanical pad', tag: 'Grid resilience for critical facilities.', why: 'Storage delivers resilience for critical public facilities and unlocks IESO demand-response participation for buildings with appropriate load flexibility.', href: '/solutions/battery-storage/' },
// GI Link Audit (Fix 4): Electrical Infrastructure has no dedicated service page;
// routes to /about/contact/ for tailored scoping (consistent with fnb-v2.jsx).
{ idx: '05', icon: 'cable', name: 'Electrical Infrastructure', zone: 'Service · distribution', tag: 'Build around future capacity.', why: 'Service upgrades, distribution planning, and interconnection coordination support solar, storage, and EV additions on a single delivery path.', href: '/about/contact/' },
];
const [active, setActive] = React.useState(0);
return (
{/* Hairline tick at the top */}
Solutions for this sector
What public sector projects typically involve.
A complete public sector program begins with a documented audit
and proceeds through solar, EV, and electrical infrastructure —
sequenced around BEPS compliance and net-zero commitments over a
multi-year capital plan.