// whs2-page-1.jsx // Warehousing & Logistics Industry Page — Part 1 // Mirrors Municipal & Institutional layout exactly. // Hero, HeroCover, Reality, Incentives. // ============================================================ // WhsHero — Industry brief masthead (text only). // ============================================================ const WHS_INDUSTRY_INDEX = [ { num: '01', name: 'Manufacturing', url: '/industries/manufacturing/', active: false }, { num: '02', name: 'Warehousing & Logistics', url: '/industries/warehousing/', active: true }, { 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 WhsHero = () => (
{/* ===== Side index ===== */}
{WHS_INDUSTRY_INDEX.map(it => ( {it.num} {it.name} {it.active && ( ))}
{/* ===== Editorial column ===== */}
Distribution · Logistics · 3PL · Cold Chain

Energy programmes.
Built for distribution & logistics.

Distribution centres, fulfillment facilities, and intermodal terminals operate around the clock with rising electricity demand. We plan and deliver energy programmes around facility scale, demand-charge exposure, fleet electrification, and the cost of operational continuity.

{/* Far-right slim numeral */}
); // ============================================================ // WhsHeroCover — full-bleed facility photo on Paper Cream. // ============================================================ const WhsHeroCover = () => (
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) => (
); // ============================================================ // WhsReality — "Why energy matters in warehousing & logistics". // Paper Cream. Mirrors Municipal Reality layout exactly. // ============================================================ const WhsReality = () => { const points = [ { n: '#1', head: 'Large facilities operate around the clock.', body: 'Warehouses and logistics facilities rely on continuous electricity for lighting, conveyors, refrigeration, automation systems, EV fleets, and distribution operations.', }, { n: '#2', head: 'Electricity costs scale with facility size.', body: 'As facilities expand and operations become more automated, rising utility rates and demand charges create increasing pressure on operating costs.', }, { n: '#3', head: 'Operational efficiency drives profitability.', body: 'Energy-intensive distribution environments depend on predictable operating costs to maintain efficiency, throughput, and competitive margins.', }, { n: '#4', head: 'Energy infrastructure supports long-term resilience.', body: 'Solar, storage, LED lighting, and electrical upgrades help reduce operating costs, improve energy predictability, and support modern logistics operations.', }, ]; return (
Operational reality

Why energy matters in warehousing & logistics.

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

{p.head}

{p.body}

))}
); }; // ============================================================ // WhsIncentives — Wise Blue. Incentives table for warehousing. // ============================================================ const WhsIncentives = () => { const rows = [ { cat: 'Federal', qty: 'Up to 30%', name: 'Clean Technology Investment Tax Credit', body: 'Refundable tax credit on eligible solar and storage capital — meaningful at distribution-facility scale where systems frequently exceed several hundred kW.' }, { cat: 'Federal', qty: '100% CCA', name: 'Enhanced First Year Capital Cost Allowance', body: 'Accelerated depreciation on eligible clean energy investments — improves first-year cash flow for capital-intensive warehouse retrofits and new builds.' }, { cat: 'Provincial', qty: 'Variable', name: 'Ontario Save on Energy', body: 'Custom and prescriptive incentives for high-bay LED, refrigeration, controls, compressed air, and other warehouse efficiency measures. Eligibility confirmed against current programme intake.' }, { cat: 'Federal', qty: 'Grant', name: 'Canada Greener Buildings & Industrial', body: 'Funding pathways for energy assessments, deep retrofits, and electrification at eligible industrial and commercial facilities, including large distribution operations.' }, ]; return (
{rows.map((r, i) => (
0{i+1}
{r.qty}

{r.name}

{r.body}

))}
); }; Object.assign(window, { WhsHero, WhsHeroCover, WhsReality, WhsIncentives });