// agri2-page-2.jsx
// Agriculture Industry Page (v2) — Part 2
// Solutions (5-row flow on Paper Cream) + Featured Project (Tilecroft Farms with photo slider).
// ============================================================
// AgriSolutions — Paper Cream. 5-step F&B-style solution flow.
// 01 Energy Audits → 02 LED → 03 Solar PV → 04 Battery → 05 Electrical
// "Understand → Reduce → Generate → Manage peaks → Build long-term."
// ============================================================
const AgriSolutions = () => {
const rows = [
{
idx: '01', kicker: 'Energy Audits',
title: 'Identify what\u2019s driving farm consumption.',
body: 'A 12-month audit — covering at least one full grain drying season — establishes where electricity is consumed across drying, irrigation, ventilation, refrigeration, and lighting. The basis for sizing every other measure.',
img: `${window.GI_BASE}assets/projects/energy-audit.webp`,
href: '/solutions/energy-audits/',
},
{
idx: '02', kicker: 'LED Lighting',
title: 'Reduce baseline load across barns and outbuildings.',
body: 'LED retrofits reduce lighting consumption in barns, processing buildings, and equipment yards while improving illumination quality for livestock welfare and worker safety.',
img: `${window.GI_BASE}assets/projects/led-lift-install.jpg`,
href: '/solutions/led-lighting/',
},
{
idx: '03', kicker: 'Solar PV',
title: 'Offset daytime farm demand from the roof.',
body: 'Barn roofs, processing buildings, and outbuildings make ideal solar surfaces. Tilecroft Farms achieved 82% annual offset on a 79.6 kW barn-roof system — the highest verified offset of any GI project across all sectors.',
img: `${window.GI_BASE}assets/projects/tilecroft-aerial.jpg`,
href: '/solutions/commercial-solar/',
},
{
idx: '04', kicker: 'Battery Storage',
title: 'Manage grain drying demand peaks.',
body: 'Battery storage addresses demand-charge exposure during the autumn drying season — without needing to fully offset the energy volume. Also unlocks IESO demand response for farms with flexible loads.',
img: `${window.GI_BASE}assets/solar-battery-storage.webp`,
href: '/solutions/battery-storage/',
},
{
idx: '05', kicker: 'Electrical Infrastructure',
title: 'Build around future capacity.',
body: 'Service upgrades, distribution planning, and interconnection coordination support solar, storage, EV charging, and expanded processing capacity on a single delivery path.',
img: `${window.GI_BASE}assets/projects/vicwest-mississauga-winter.jpg`,
href: '/about/contact/',
},
];
const flow = [
'Understand the operation',
'Reduce load',
'Generate power',
'Manage peaks',
'Build long-term infrastructure',
];
return (
{/* Flow rail */}
The story
{flow.map((f, i) => (
{f}
{i < flow.length - 1 && (
→
)}
))}
);
};
// ============================================================
// AgriSolutionsGreen — Soft Green. Mirrors the F&B "cream" Solutions
// layout — header + barn schematic on left, 5-row interactive solutions
// list on right. Solar panels drawn as proper side-profile cross-sections
// on standoff legs above the pitched barn roof.
// ============================================================
const AgriBarnSchematic = ({ activeIndex }) => {
const W = 540;
const H = 360;
// On soft-green surface: amber stays for highlight, all other strokes/text white-on-green.
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 Commercial Solar — barn rooftop
{ id: 0, label: '01', cx: 200, cy: 96,
hl: },
// 02 Battery — BESS pad to right of barn
{ id: 1, label: '02', cx: 462, cy: 244,
hl: },
// 03 Energy Audits — whole farm ring
{ id: 2, label: '03', cx: 220, cy: 200,
hl: },
// 04 Grant Management — programme layer banner under ground
{ id: 3, label: '04', cx: 110, cy: 312,
hl: },
];
return (
);
};
const AgriSolutionsGreen = () => {
const rows = [
{ idx: '01', icon: 'sun', name: 'Commercial Solar', zone: 'Barn rooftop', tag: 'Generate from the roof you already own.', why: 'Barn roofs and adjacent processing-building rooflines are the most common surfaces for agricultural solar in Ontario. Sized to the 12-month load profile — Tilecroft Farms achieved 82% annual offset on a 79.6 kW barn-roof system.', href: '/solutions/commercial-solar/' },
{ idx: '02', icon: 'battery-charging', name: 'Battery Storage', zone: 'Mechanical pad', tag: 'Manage grain drying demand peaks.', why: 'Storage paired with solar to manage demand-charge exposure during the autumn drying peak, support irrigation cycles, and qualify for IESO demand response programs.', href: '/solutions/battery-storage/' },
{ idx: '03', icon: 'clipboard-list', name: 'Energy Audits', zone: 'Whole operation', tag: 'Establish the 12-month load baseline.', why: 'ASHRAE-grade audits scoped to the agricultural year — drying, irrigation, ventilation, refrigeration. Twelve-month interval data is the basis for any generation or storage decision.', href: '/solutions/energy-audits/' },
{ idx: '04', icon: 'file-check', name: 'Grant Management', zone: 'Programme layer', tag: 'REAP applications, managed end-to-end.', why: 'REAP, Canadian Agricultural Adaptation, IESO programs, and Canada Infrastructure Bank financing — eligibility screened during assessment, applications managed end-to-end alongside the project.', href: '/resources/rebates-and-incentives/' },
];
const [active, setActive] = React.useState(0);
return (
Solutions for this sector
What agricultural projects typically involve.
The most complete agricultural programmes combine an energy audit,
rooftop solar, storage, and electrical infrastructure — with REAP
grant funding applied alongside the project, not after it.