// fnb-break-testimonial-faq-cta.jsx // Food & Beverage Industry Page — I08 Testimonial (no quote — sector portfolio // statement per brief flag), I09 FAQ (5 Qs), Visual Break, I10 Closing CTA, Author. // ============================================================ // I09 · FnbFAQ — Paper White. 5 questions per brief. // ============================================================ const FnbFAQ = () => { const items = [ { q: 'Can commercial solar work for a food manufacturing facility that runs 24 hours a day?', a: "Yes — 24/7 operation is one of the strongest arguments for solar in food manufacturing, not a constraint against it.\n\nA facility that consumes electricity continuously has more hours of daytime consumption to offset with solar generation than a facility that only runs during business hours. Battery storage extends the value of solar into overnight hours by capturing excess daytime generation and deploying it during the overnight refrigeration and production load window." }, { q: 'How does LED lighting work in a food manufacturing environment?', a: "LED fixtures for food manufacturing are available in food-safe configurations rated for wash-down environments, temperature extremes, and consistent illumination levels required for production quality.\n\nCompleted food manufacturing LED retrofits in the GI portfolio have delivered 60–66% energy reduction on the lighting system. The saveONenergy Retrofit Incentive Program covers a significant portion of project cost on qualifying food facility installations." }, { q: 'What is the impact of refrigeration loads on solar economics for food facilities?', a: "Refrigeration is typically the largest and least flexible load in a food facility. It runs continuously regardless of solar output.\n\nThe solar system offsets the refrigeration load during daytime hours. Battery storage can capture excess daytime generation and discharge it to the refrigeration system overnight, improving total offset. The demand charge component of refrigeration costs can be addressed through load scheduling or storage dispatch." }, { q: 'Do solar installations affect food safety or HACCP compliance?', a: "Rooftop solar installations do not affect food production processes, HACCP systems, or food safety environments directly — the system is on the roof, connected to the building's electrical supply.\n\nWork during installation is coordinated around production schedules to avoid disruption to food handling areas. Electrical tie-in is completed in planned maintenance windows. Pre-installation structural and roof assessments confirm the system does not compromise building integrity or drainage." }, { q: 'Is there an incentive program specifically for food manufacturing energy projects in Ontario?', a: "Food manufacturing facilities qualify for the same programs as other C&I sectors: the federal Clean Technology Investment Tax Credit (up to 30%), the Enhanced First Year Capital Cost Allowance (100% CCA), and Ontario's saveONenergy Retrofit Incentive Program.\n\nFood manufacturing facilities frequently achieve among the highest saveONenergy incentive returns per project due to the size of legacy lighting systems and the scale of reductions achievable." }, ]; const [open, setOpen] = React.useState(0); return (
Questions from food facility operators & energy managers

Frequently asked questions.

Food and beverage energy questions specific to the sector's operating profile.

{items.map((it, i) => { const isOpen = open === i; return (

{it.a}

); })}
); }; // ============================================================ // FnbVisualBreak — Rabba aerial photo. // "Plan around the cold chain. Not despite it." short statement. // ============================================================ const FnbVisualBreak = () => (
Rabba Fine Foods rooftop solar installation, Mississauga
); // ============================================================ // I10 · FnbClosingCTA — Soft Green // ============================================================ const FnbClosingCTA = () => (
Start your assessment

Energy planning built around {' '} food operations.

A facility assessment identifies where solar, storage, lighting, and electrical upgrades can reduce operating costs while aligning with your production schedule, refrigeration profile, and long-term facility plans.

No commitment required.

); // ============================================================ // FnbAuthor — E-E-A-T strip // ============================================================ const FnbAuthor = () => (
Reviewed by
Senior Energy Engineer · Green Integrations
ESA-Licensed · CanREA Member · Delivering energy projects across Ontario food processing, food retail, and food manufacturing facilities since 2012.
Last updated
April 2026
Reading time
7 min
); Object.assign(window, { FnbFAQ, FnbVisualBreak, FnbClosingCTA, FnbAuthor });