// agri2-page-1.jsx // Agriculture Industry Page (v2) — Part 1 // Hero, HeroCover, Reality, Incentives. // Mirrors the F&B / Municipal page structure, restyled for agriculture // (Tilecroft Farms as the reference operation, amber accents on Wise Blue, // sage accents on Paper Cream). // ============================================================ // AgriHero — Paper Cream. Simplified editorial hero. // No "Industry Brief" masthead, no vitals ribbon, no FIG caption rail — // just breadcrumb, eyebrow, H1, subtitle, body, buttons + facility image. // ============================================================ const AGRI_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: true }, { num: '05', name: 'REIT & Property', url: '/industries/real-estate/', active: false }, { num: '06', name: 'Goverment & Institutional', url: '/industries/government/', active: false }, ]; const AgriHero = () => (
{/* Main body — side index + editorial */}
{/* ===== Side index ===== */}
{AGRI_INDUSTRY_INDEX.map(it => ( {it.num} {it.name} {it.active && ( ))}
{/* ===== Editorial column ===== */}
Agriculture · Ontario farm operators

Energy solutions.
Built around the season.

We work with Ontario farm operators and agricultural businesses to reduce operating costs through solar, storage, LED lighting, and electrical upgrades — planned around drying, irrigation, ventilation, and the broader agricultural year.

{/* Far-right slim numeral */}
); // ============================================================ // AgriHeroCover — full-bleed Tilecroft Farms photo on Paper Cream. // Mirrors MunHeroCover layout — corner ticks, datasheet plate, scale strip. // ============================================================ const AgriHeroCover = () => (
Aerial view of Tilecroft Farms — 79.6 kW rooftop solar across the agricultural building roofline in Osgoode, Ontario {/* Corner ticks */} {[ { top: 12, left: 12 }, { top: 12, right: 12 }, { bottom: 12, left: 12 }, { bottom: 12, right: 12 }, ].map((c, i) => (
); // ============================================================ // AgriReality — Operational Reality / Why energy matters in agriculture. // Paper Cream. Title left + 4 cards in a row to the right. (F&B layout.) // ============================================================ const AgriReality = () => { const points = [ { n: '#1', head: 'Agricultural operations depend on reliable electricity.', body: 'Farms and agricultural facilities rely on power for irrigation, grain drying, refrigeration, ventilation, processing equipment, and daily operations.', }, { n: '#2', head: 'Energy costs fluctuate with seasonal demand.', body: 'High electricity usage during planting, harvesting, storage, and processing periods increases exposure to rising utility costs and operational volatility.', }, { n: '#3', head: 'Margins are heavily tied to operating costs.', body: 'Input costs continue to rise across the agricultural sector, making energy efficiency and long-term cost predictability increasingly important.', }, { n: '#4', head: 'Energy infrastructure improves operational resilience.', body: 'Solar, storage, LED lighting, and electrical upgrades help agricultural operations reduce electricity costs, improve energy predictability, and support long-term sustainability goals.', }, ]; return (
{/* Title block — left */}
Operational reality

Why energy matters in agriculture.

{/* Four reality cards */}
{points.map((p) => (
{p.n} Reality

{p.head}

{p.body}

))}
); }; // ============================================================ // AgriIncentives — Wise Blue. Incentives table, agriculture-flavored. // Uses the same row layout as the F&B / Mun incentives section. // ============================================================ const AgriIncentives = () => { const rows = [ { cat: 'Federal', qty: 'Grant', name: 'REAP — Rural & Northern Communities Clean Energy', body: 'Federal grant funding administered by Natural Resources Canada and AAFC for qualifying agricultural and rural operations — renewable generation, storage, and energy efficiency upgrades. One of the strongest non-dilutive funding sources available to Canadian farms.', }, { cat: 'Federal', qty: 'Up to 30%', name: 'Clean Technology Investment Tax Credit', body: 'Refundable tax credit on eligible solar, battery storage, and electrification capital. Applies regardless of the operation\u2019s current tax position in the claim year.', }, { cat: 'Federal', qty: '100% CCA', name: 'Enhanced First Year Capital Cost Allowance', body: 'Accelerated depreciation on eligible clean-energy investments — improving first-year cash flow in the year of installation.', }, { cat: 'Provincial', qty: 'Variable', name: 'Ontario Save on Energy — Retrofit Incentive', body: 'Incentives for LED, HVAC, and ventilation upgrades. Farms and processing facilities with large legacy lighting and motor loads frequently achieve strong incentive returns per project.', }, ]; return (
{rows.map((r, i) => (
0{i+1}
{r.qty}

{r.name}

{r.body}

))}
); }; Object.assign(window, { AgriHero, AgriHeroCover, AgriReality, AgriIncentives });