// incentives-sections.jsx // Resource page — clean, editorial, less label-noise than the home page. // Sections are deliberately spaced; one eyebrow per section maximum. // Color rhythm: Wise Blue → Soft Green → Paper Cream → Wise Blue // → split → Deep Ink → Cream → Soft Green // // All amounts and program names are quoted directly from the May 2026 spec. // ============================================================ // 01 · HERO — Wise Blue. Faint $509K watermark right side. // ============================================================ const IncentivesHero = () => (
Resource guide

Commercial energy rebates and{' '} incentives {' '}in Canada.

Federal, provincial, and utility programs for commercial and industrial facilities — solar, battery storage, LED retrofits, HVAC, efficiency.

Ontario · Alberta · Nova Scotia · British Columbia
); // ============================================================ // 02 · PROOF BAND — Soft Green. Four cells. Maximum potentials. // Big numerals, restrained labels. No promotional voice. // ============================================================ const ProofBand = () => { const cells = [ { big: 'Up to 30%', label: 'Federal Clean Tech ITC' }, { big: 'Max $860K', label: 'Ontario solar incentive' }, { big: '100% CCA', label: 'First-year write-off' }, { big: '+ Utility', label: 'Ongoing capacity revenue' } ]; return (
{cells.map((c, i) => (
{c.big}
{c.label}
))}
); }; // ============================================================ // 03 · HOW STACKING WORKS — Paper Cream. // Three horizontal stream bands. Left: stream label + outcome. // Right: program detail. Below: $509K callout. // ============================================================ const HowStacking = () => { const streams = [ { tier: 'Federal', outcome: 'TAX CREDITS & ACCELERATED DEPRECIATION', body: 'Federal clean energy incentives support upfront capital investment through refundable tax credits and accelerated depreciation. Eligible projects may qualify for the 30% Clean Technology Investment Tax Credit alongside 100% first-year CCA on qualifying assets. Additional federal funding programs may also apply depending on sector and project type.' }, { tier: 'Utility', outcome: 'VERIFIED ENERGY SAVINGS REBATES', body: 'Utility-administered incentives are typically based on verified kWh savings, kW demand reduction, or prescriptive equipment upgrades. Programs commonly apply across solar, lighting, HVAC, controls, battery storage, and broader energy efficiency projects.' }, { tier: 'Sector & Program Funding', outcome: 'TARGETED INDUSTRY FUNDING OPPORTUNITIES', body: 'Independent agencies, industry organizations, and sector-specific programs periodically offer additional project funding with limited application windows. These programs are often tied to manufacturing, agriculture, food processing, electrification, ESG, or emissions reduction initiatives.' } ]; return (
{streams.map((s, i) => (
0{i + 1}

{s.tier}

{s.outcome}

{s.body}

))}
{/* $509K proof callout — the page's one permitted GI proof point */}
RECENT REBATE APPROVALS
$8.5M

Since the beginning of 2025, GI has secured ≈ $8.5M in approved rebates (excluding tax incentives) across Alberta, British Columbia, Nova Scotia, and Ontario. Funding varies by province, project type, and program availability.

); }; // ============================================================ // 04 · FEDERAL PROGRAMS — Paper Cream. // Each entry: huge left amount, program detail right. // ============================================================ const FederalPrograms = () => { const rows = [ { amount: '30%', qualifier: 'Refundable', name: 'Clean Technology Investment Tax Credit', body: 'Refundable federal tax credit equal to 30% of eligible capital costs for solar PV, battery storage, and related electrical infrastructure. Refundable means it is payable even where corporate tax liability is limited in the claim year — the eligible amount is returned as a cash payment rather than carried forward.', ref: 'https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/corporations/business-tax-credits/clean-economy-itc/clean-technology-itc/about-ct-itc.html', refName: 'View ITC program' }, { amount: '100%', qualifier: 'First year', name: 'Enhanced First Year Capital Cost Allowance — Class 43.2', body: 'Full capital cost deduction for eligible clean energy assets in year one of operation. Significantly reduces taxable income in the year of investment. Stackable with the Clean Technology ITC — together, the most tax-efficient capital treatment available to Canadian C&I businesses.', ref: 'https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/sole-proprietorships-partnerships/report-business-income-expenses/claiming-capital-cost-allowance/accelerated-investment-incentive.html', refName: 'View CCA program' }, { amount: 'NRCan', qualifier: 'Assessment', name: 'GREEN INDUSTRIAL FACILITIES & MANUFACTURING PROGRAM', body: 'Federal funding supporting industrial energy efficiency, process improvements, electrification, and emissions reduction projects within Canadian manufacturing facilities. GIFMP funding can support feasibility work, capital upgrades, and broader industrial decarbonization initiatives.', // GI Link Audit (Fix 8): https://natural-resources.canada.ca/gifmp returns 404. // NRCan reorganized their site — the GIFMP program now lives elsewhere on // natural-resources.canada.ca but the new path needs manual verification. // TODO: replace `ref` with the current canonical URL. ref: 'http://natural-resources.canada.ca/energy-efficiency/industry-energy-efficiency/green-industrial-facilities-manufacturing-program', refName: 'View GIFMP program' } ]; return (
{rows.map((r, i) => ( ))}
); }; // ============================================================ // 05 · ONTARIO — Wise Blue full-width. // White headline + three program rows. // ============================================================ const OntarioPrograms = () => { const rows = [ { amount: 'Up to $860K', tag: 'PROGRAM 01', name: 'IESO saveONenergy — Solar Load Displacement Program', body: 'Up to $860 per installed AC kilowatt for qualifying behind-the-meter commercial and industrial solar installations. Eligibility is assessed against the facility\u2019s grid-connected load profile. Maximum $860,000 per qualifying project.', ref: 'https://saveonenergy.ca/en/For-Business-and-Industry/Programs-and-incentives/Retrofit-Program/Solar-photovoltaic-incentives', refName: 'View saveONenergy program' }, { amount: '30% ITC', tag: 'PROGRAM 02', name: 'Refundable Federal Tax Credit', body: 'Apply a refundable federal tax credit equal to 30% of eligible capital costs for solar PV, battery storage, and related electrical infrastructure. The 30% ITC is applied after deducting any applicable rebates provided for the project. Refundable means it is payable even where corporate tax liability is limited in the claim year — the eligible amount is returned as a cash payment rather than carried forward. Clean Technology Investment Tax Credit for eligible solar, battery storage, and electrical infrastructure.', ref: 'https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/corporations/business-tax-credits/clean-economy-itc/clean-technology-itc/about-ct-itc.html', refName: 'View ITC program' }, { amount: '100% CCA', tag: 'PROGRAM 03', name: 'First-Year Capital Write-Off', body: 'Full capital cost deduction for eligible clean energy assets in year one of operation. The amount deducted is the net asset cost after accounting for any applicable rebates and ITCs received for the project. Significantly reduces taxable income in the year of investment. Stackable with the Clean Technology ITC — together, the most tax-efficient capital treatment available to Canadian C&I businesses.', ref: 'https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/sole-proprietorships-partnerships/report-business-income-expenses/claiming-capital-cost-allowance/accelerated-investment-incentive.html', refName: 'View CCA program' } ]; return (
{rows.map((r, i) => ( ))}
); }; // ============================================================ // 06 · ALBERTA + NOVA SCOTIA — 50/50 split. // Two columns each with compact program lists. No big numerals here — // these are administrative, not headline incentives. // ============================================================ const AlbertaNovaScotia = () => { const ab = { note: 'Energy Efficiency Alberta was dissolved April 2020. No direct provincial cash rebate for C&I solar currently exists; federal programs are the primary incentives for Alberta C&I facilities.', programs: [ { name: 'Micro-Generation Regulation', body: 'Bill credits for surplus solar exported to the grid under Alberta\u2019s province-wide micro-generation framework. Credit rate is negotiated with your electricity retailer.', tag: 'Policy' }, { name: 'Strategic Energy Management for Industry (SEMI)', body: 'Technical, analytical, and financial support for industrial facilities implementing efficiency and renewable energy projects — including solar PV integration. Administered by ERA Alberta.', tag: 'Industrial · New 2026' }, { name: 'Clean Energy Improvement Program (CEIP)', body: 'Municipality-enabled property-tax financing for efficiency and renewable energy upgrades. Covers up to 100% of eligible project costs, repaid through a property tax charge.', tag: 'Financing · New 2026' }, { name: 'MCCAC — Municipal Energy Grant Program', body: 'Funding for municipalities, school boards, and provincial agencies for solar and efficiency projects on public facilities.', tag: 'Public sector' } ] }; const ns = { programs: [ { name: 'Efficiency Nova Scotia — Commercial Buildings Rebates', body: 'Rebates on HVAC, LED, and building controls upgrades. Financing and advisory services available for larger custom-engineered projects.', tag: 'Commercial' }, { name: 'Efficiency Nova Scotia — Manufacturing Program', body: 'Scoping studies, equipment rebates, and energy management planning for industrial and manufacturing facilities.', tag: 'Industrial' }, { name: 'Nova Scotia Power Commercial Net Metering', body: 'Province-wide net metering framework for commercial and industrial customers generating renewable electricity to offset their own consumption. Annual crediting cycle.', tag: 'Net metering' } ] }; const PCol = ({ code, title, accent, items, note }) => (
{/* Big faint province code */}
Provincial · {title}

{title}

{note && (

{note}

)}
{items.map((p, i) => (
{p.tag}

{p.name}

{p.body}

))}
); return (
); }; // ============================================================ // 07 · AGRICULTURE — Deep Ink standalone. Gold accent. // Warning callout for competitive-round caveat. // ============================================================ const AgricultureProgram = () => (
Federal · Agriculture

Agricultural Clean Technology Program.

Agriculture and Agri-Food Canada (AAFC)

Federal program providing grants covering a significant share of eligible capital costs for on-farm clean energy systems including solar PV. Applies to qualifying agricultural operations across all provinces.

Stackable with the Clean Technology ITC and Enhanced CCA — the combination can substantially reduce on-farm project costs.

{/* Warning callout */}
!

Competitive funding rounds — not a standing rebate.{' '} Application windows must be confirmed before project decisions are modelled against this stream.

{/* GI Link Audit (Fix 8): https://agriculture.canada.ca/act returns 403. The AAFC ACT program landing page may require a deeper path. TODO: manually verify and replace href with the current canonical URL. */} agriculture.canada.ca/act →
); // ============================================================ // 08 · BC HYDRO INCENTIVE STACK — Paper Cream // Replaces the prior BC / SK / MB tri-card layout (v1.29.0 and earlier) // with a deep-focus BC-specific section. Two detailed program cards // (Load Displacement at 75%, Energy Storage at 80%) plus a Soft Green // "stackable" strip showing the two federal capital treatments that // layer on top. Function name kept as OtherProvinces so the existing // mount in app.html (``) does not need to change. // ============================================================ const OtherProvinces = () => { const programs = [ { tag: 'Program 01', prefix: 'Up to', amount: '75%', title: 'BC Hydro Load Displacement Program', body: <> Funding for behind-the-meter commercial solar and energy reduction projects that lower electricity consumption from the BC Hydro grid. Eligible facilities can receive incentives covering up to 75% of total project cost, to a maximum of{' '} $1 million per site. , evalLine: 'Projects are evaluated based on verified load displacement, annual energy reduction, and operational impact across the facility.', label: 'Behind-the-meter · C&I', link: 'https://www.bchydro.com/powersmart/business/programs/buy-upgrade-equipment/custom-project-incentives/load-displacement.html', linkLabel: 'bchydro.com/load-displacement →' }, { tag: 'Program 02', prefix: 'Up to', amount: '80%', title: 'BC Hydro Energy Storage Incentive', body: <> Funding for commercial battery energy storage systems designed to reduce peak electricity demand and support grid flexibility in British Columbia. Incentives can cover up to 80% of eligible project costs for qualified facilities participating in{' '} BC Hydro's demand response framework. , evalLine: 'Projects are evaluated based on facility load profile, battery dispatch capability, and operational demand reduction potential.', label: 'BESS · Demand response', link: 'https://www.bchydro.com/powersmart/business/programs/large-demand-response/energy-storage-system-incentive.html', linkLabel: 'bchydro.com/energy-storage-system-incentive →' } ]; const federalStack = [ { num: '30%', tag: 'Federal · Refundable', program: 'Clean Technology Investment Tax Credit', desc: 'Refundable credit on eligible solar, BESS, and electrical capital costs.' }, { num: '100%', tag: 'Federal · First-year CCA', program: 'Enhanced Capital Cost Allowance — Class 43.2', desc: 'Full first-year write-off of eligible clean energy assets against taxable income.' } ]; return (
{/* HEADER — 2-column: title block + sub paragraph */}

The BC Hydro incentive stack.

BC Hydro · Demand Response Framework

British Columbia operates one of the deepest behind-the-meter incentive frameworks in Canada — pairing direct cost recovery for grid-displacement projects with capital support for battery storage that participates in BC Hydro's demand response. Both programs stack with federal capital incentives.

{/* PRIMARY INCENTIVE GRID — 2 detail cards */}
{programs.map((p) => (
{p.tag}
{p.prefix} {p.amount}

{p.title}

{p.body}

{p.evalLine}

{p.label} {p.linkLabel}
))}
{/* STACKABLE STRIP — Soft Green band with the two federal layers */}
+ Stackable with federal

Layer two federal programs on top.

Both BC Hydro incentives apply on top of point-of-investment federal capital treatments — recovering additional project cost in year one.

{federalStack.map((it) => (
{it.num}
{it.tag}
{it.program}

{it.desc}

))}
{/* FOOTNOTE */}

Program details confirmed current at publication. Eligibility, incentive ceilings, and intake windows change — always verified before project scoping.

); }; // ============================================================ // 09 · CHANGE WARNING — Soft Green band. Single compact message. // ============================================================ const ChangeWarning = () => (

Program information changes frequently.

Eligibility thresholds, incentive amounts, and application windows are updated on a rolling basis. This page is reviewed and updated every quarter. We confirm current availability at every scoping conversation — as part of the financial model built before any recommendation is made.

); // ============================================================ // 10 · FAQ — Cream. Six questions. Large mono index left. // ============================================================ const IncentivesFAQ = () => { const [open, setOpen] = React.useState(0); const items = [ { q: 'Can commercial facilities stack federal and provincial incentives on the same project?', a: 'Yes. Federal tax credits apply to capital costs; provincial programs apply to demonstrated energy savings. These streams target different components and are not mutually exclusive. Most Ontario C&I projects qualify for both the Clean Technology ITC and saveONenergy simultaneously.' }, { q: 'Does the 30% Clean Technology ITC apply to battery storage as well as solar?', a: 'Yes. Battery energy storage systems are eligible assets under the Clean Tech ITC alongside solar PV and related electrical infrastructure. The same 30% refundable credit applies regardless of whether the asset is generation or storage.' }, { q: 'What is the saveONenergy Solar Load Displacement incentive for a typical commercial project?', a: 'Up to $860 per installed AC kilowatt, with a maximum of $860,000 per qualifying project. The specific amount depends on system size, load profile, and current program schedules confirmed at project scoping.' }, { q: 'Do any of these programs require an energy study before applying?', a: 'Some do. The saveONenergy Retrofit Program requires a qualifying energy study as part of the application. That same documentation also supports BEPS compliance reporting, making it useful well beyond the incentive application itself.' }, { q: 'Are there specific incentive programs for farms and agricultural facilities?', a: 'Yes — the AAFC Agricultural Clean Technology Program provides grants covering a significant share of on-farm solar costs. It is stackable with the federal Clean Tech ITC and Enhanced CCA. The program operates in competitive funding rounds; availability must be confirmed before scoping.' }, { q: 'How often do these programs change?', a: 'Federal programs follow annual budget cycles. Provincial programs are updated by their administrators on a rolling basis. This guide is reviewed every quarter. Confirm current eligibility and funding amounts before project decisions.' } ]; return (
{items.map((it, i) => { const isOpen = open === i; return (

{it.a}

); })}
); }; // ============================================================ // 11 · RELATED LINKS — pills. White, minimal. // ============================================================ const RelatedLinks = () => { const links = [ { label: 'Commercial Solar', href: '/solutions/commercial-solar/' }, { label: 'Battery Storage', href: '/solutions/battery-storage/' }, { label: 'LED Lighting', href: '/solutions/led-lighting/' }, { label: 'Energy Audits', href: '/solutions/energy-audits/' }, // GI Link Audit (Fix 4): no standalone BEPS guide exists yet — fallback to Insights. { label: 'BEPS Compliance Guide', href: '/resources/insights/' } ]; return (
Related {links.map((l) => ( { e.currentTarget.style.background = 'var(--gi-soft-green)'; e.currentTarget.style.color = '#fff'; e.currentTarget.style.borderColor = 'var(--gi-soft-green)'; }} onMouseOut={(e) => { e.currentTarget.style.background = 'transparent'; e.currentTarget.style.color = 'var(--gi-deep-ink)'; e.currentTarget.style.borderColor = 'rgba(15,33,51,0.18)'; }}> {l.label} ))}
); }; // ============================================================ // 12 · CLOSING CTA — Soft Green. Large faint "Incentives" wordmark. // ============================================================ const IncentivesCTA = () => (
Next step

Questions about your facility's incentive eligibility?

Every assessment includes a review of applicable funding programs, projected incentives, and expected financial impact.

e.currentTarget.style.background = 'rgba(255,255,255,0.92)'} onMouseOut={(e) => e.currentTarget.style.background = '#fff'}> Start your assessment Book a 20-minute call

No commitment required.

); Object.assign(window, { IncentivesHero, ProofBand, HowStacking, FederalPrograms, OntarioPrograms, AlbertaNovaScotia, AgricultureProgram, OtherProvinces, ChangeWarning, IncentivesFAQ, RelatedLinks, IncentivesCTA });