// mun-page-1.jsx // Municipal & Institutional Industry Page — Part 1 // Hero, HeroCover, Reality, Incentives. // Mirrors the F&B page structure but for public sector content, // and uses GI brand tokens (Wise Blue / Soft Green / Paper Cream / Amber). // ============================================================ // MunHero — Wise Blue. Industry brief masthead (text only). // ============================================================ const MUN_INDUSTRY_INDEX = [ { num: '01', name: 'Manufacturing', url: '/industries/manufacturing/', active: false }, { num: '02', name: 'Warehousing & Logistics', url: '/industries/warehousing/', active: false }, { num: '03', name: 'Food & Beverage', url: '/industries/food-and-beverage/', active: false }, { num: '04', name: 'Agriculture', url: '/industries/agriculture/', active: false }, { num: '05', name: 'REIT & Property', url: '/industries/real-estate/', active: false }, { num: '06', name: 'Goverment & Institutional', url: '/industries/government/', active: true }, ]; const MunHero = () => (
{/* Main body — side index + editorial */}
{/* ===== Side index ===== */}
{MUN_INDUSTRY_INDEX.map(it => ( {it.num} {it.name} {it.active && ( ))}
{/* ===== Editorial column ===== */}
Municipal · Social Housing · Institutions

Energy programs.
Built for public buildings.

Municipal, social housing, and institutional energy projects operate on longer decision timelines and have additional procurement requirements. We plan and deliver energy programs around BEPS compliance, net-zero commitments, and public procurement frameworks.

); // ============================================================ // MunHeroCover — full-bleed facility photo on Paper Cream. // ============================================================ const MunHeroCover = () => (
Aerial view of rooftop solar installation on an Ontario manufacturing facility {/* Corner ticks */} {[ { top: 12, left: 12 }, { top: 12, right: 12 }, { bottom: 12, left: 12 }, { bottom: 12, right: 12 }, ].map((c, i) => (
); // ============================================================ // MunReality — "Why energy matters in public sector" — 4 cards. // Paper Cream. // ============================================================ const MunReality = () => { const points = [ { n: '#1', head: 'BEPS applies to public buildings too.', body: "Ontario's Building Emissions Performance Standard applies to large municipal buildings on the same schedule as commercial buildings — regardless of ownership type.", }, { n: '#2', head: 'Net-zero needs documented progress.', body: 'Commitments made by councils, housing authorities, and institutions create internal pressure to demonstrate measurable reductions — which requires baselines, not aspirational targets.', }, { n: '#3', head: 'Value for money has to be defensible.', body: 'Public procurement requires transparent process and accountable execution. A project delivered late or over budget on a public facility creates institutional risk private projects do not.', }, { n: '#4', head: 'EV infrastructure ahead of the mandate.', body: 'Municipal fleet electrification is moving on regulatory schedules. Charging infrastructure planned proactively costs significantly less than retrofit under deadline pressure.', }, ]; return (
Operational reality

Why energy matters in public buildings.

{points.map((p) => (
{p.n} Reality

{p.head}

{p.body}

))}
); }; // ============================================================ // MunIncentives — Wise Blue. Incentives table for public sector. // ============================================================ const MunIncentives = () => { const rows = [ { cat: 'Federal', qty: 'Up to 30%', name: 'Clean Technology Investment Tax Credit', body: 'Refundable tax credit on eligible solar and storage capital. Available to public sector entities and non-profits — confirm eligibility for public bodies in the project model.' }, { cat: 'Federal', qty: 'Grant', name: 'Canada Greener Buildings Initiative', body: 'Funding for energy assessments and retrofits at eligible commercial and institutional buildings. Social housing and public institutions frequently qualify.' }, { cat: 'Federal', qty: '100% CCA', name: 'Enhanced First Year Capital Cost Allowance', body: 'Accelerated depreciation on eligible clean energy investments for public sector entities with taxable income — improving first-year cash flow in the year of installation.' }, { cat: 'Provincial', qty: 'Variable', name: 'Ontario Save on Energy', body: 'Public and institutional buildings may qualify for saveONenergy efficiency programs. Eligibility confirmed during project scoping against current program intake.' }, ]; return (
{rows.map((r, i) => (
0{i+1}
{r.qty}

{r.name}

{r.body}

))}
); }; Object.assign(window, { MunHero, MunHeroCover, MunReality, MunIncentives });