// mfg2-page-1.jsx // Manufacturing Industry Page — Part 1 (Goverment-style flow) // MfgHero (clean editorial, no datasheet rails), MfgHeroCover, MfgIncentives. // ============================================================ // MfgHero — Paper Cream. Editorial hero with side industry index. // (Matches MunHero layout but Manufacturing is the active sector.) // ============================================================ const MFG_INDUSTRY_INDEX = [ { num: '01', name: 'Manufacturing', url: '/industries/manufacturing/', active: true }, { 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: false }, ]; const MfgHero = () => (
{/* ===== Side index ===== */}
{MFG_INDUSTRY_INDEX.map(it => ( {it.num} {it.name} {it.active && ( ))}
{/* ===== Editorial column ===== */}
Continuous Production · Demand · Generation

Energy program.
Engineered for the load.

Electricity is one of the largest controllable costs in continuous manufacturing. We work with Ontario operators to reduce consumption, size generation around actual facility demand, and build the infrastructure for long-term cost stability.

{/* Far-right slim numeral */}
); // ============================================================ // MfgHeroCover — full-bleed manufacturing facility photo. // ============================================================ const MfgHeroCover = () => (
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) => (
); // ============================================================ // MfgIncentives — Wise Blue. Incentives table for manufacturing. // ============================================================ const MfgIncentives = () => { const rows = [ { cat: 'Federal', qty: 'Up to 30%', name: 'Clean Technology Investment Tax Credit', body: 'Refundable tax credit applied to eligible solar, battery storage, and electrification capital costs. Applies to manufacturing facilities regardless of tax position in the claim year.' }, { cat: 'Provincial', qty: 'Variable', name: 'Ontario Save on Energy — Retrofit Incentive Program', body: 'Incentives for LED lighting, HVAC upgrades, and building controls that reduce baseline electricity consumption. Manufacturing facilities with large production floors and legacy lighting systems are among the most eligible applicants in the province.' }, { cat: 'Federal', qty: '100% CCA', name: 'Enhanced First Year Capital Cost Allowance', body: 'Accelerated depreciation allowing businesses to deduct eligible clean energy investments in the first year — improving cash flow in the year of investment.' }, { cat: 'Utility', qty: 'Ongoing', name: 'IESO Demand Response & Capacity Payments', body: 'Manufacturing facilities with flexible loads or battery storage can participate in IESO demand response programmes, generating ongoing revenue that improves overall project economics.' }, ]; return (
{rows.map((r, i) => (
0{i+1}
{r.qty}

{r.name}

{r.body}

))}
); }; // ============================================================ // MfgReality — "Why energy matters in manufacturing" — 4 cards. // Paper Cream. Mirrors the Goverment Reality layout exactly. // ============================================================ const MfgReality = () => { const points = [ { n: '#1', head: 'High electrical demand across operations.', body: 'Manufacturing facilities rely on continuous power for production equipment, compressed air systems, welding, machining, material handling, and facility operations.', }, { n: '#2', head: 'Electricity costs directly affect production costs.', body: 'Rising utility rates, peak demand charges, and energy volatility increase operational expenses and impact manufacturing competitiveness.', }, { n: '#3', head: 'Downtime and inefficiency are expensive.', body: 'Inefficient equipment, outdated lighting, and unmanaged energy systems increase operating costs and reduce long-term profitability.', }, { n: '#4', head: 'Energy infrastructure supports operational stability.', body: 'Solar, energy storage, lighting upgrades, and electrical modernization help manufacturers reduce operating costs and improve long-term energy predictability.', }, ]; return (
Operational reality

Why energy matters in manufacturing.

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

{p.head}

{p.body}

))}
); }; Object.assign(window, { MfgHero, MfgHeroCover, MfgReality, MfgIncentives });