// cre2-page-1.jsx // Commercial Real Estate Industry Page (v2) — Part 1 // Hero, HeroCover, Reality, Incentives. // Mirrors the Agriculture v2 / Municipal page structure, restyled for CRE // (Vicwest Stratford as the reference asset). // ============================================================ // CreHero — Paper Cream. Simplified editorial hero. // No "Industry Brief" masthead, no vitals ribbon, no FIG caption rail — // just side index + eyebrow, H1, subtitle, body, buttons. // ============================================================ const CRE_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: false }, { num: '05', name: 'Commercial Real Estate', url: '/industries/real-estate/', active: true }, { num: '06', name: 'Goverment & Institutional', url: '/industries/government/', active: false }, ]; const CreHero = () => (
{/* ===== Side index ===== */}
{CRE_INDUSTRY_INDEX.map(it => ( {it.num} {it.name} {it.active && ( ))}
{/* ===== Editorial column ===== */}
Commercial Real Estate · Asset managers & owners

Energy solutions.
Built around the asset.

We work with Canadian commercial real estate owners, asset managers, and finance teams to reduce operating costs through solar, storage, LED lighting, recommissioning, and electrical upgrades — planned around NOI, BEPS compliance, and long-term asset value.

{/* Far-right slim numeral */}
); // ============================================================ // CreHeroCover — full-bleed Vicwest Stratford aerial on Paper Cream. // Same corner-ticks + datasheet plate + scale strip treatment as Agri/Mun. // ============================================================ const CreHeroCover = () => (
Aerial view of Vicwest Inc. commercial real estate facility — 590 kW rooftop solar across the building roofline in Stratford, Ontario {/* Corner ticks */} {[ { top: 12, left: 12 }, { top: 12, right: 12 }, { bottom: 12, left: 12 }, { bottom: 12, right: 12 }, ].map((c, i) => (
); // ============================================================ // CreReality — Operational Reality / Why energy matters in CRE. // Paper Cream. Title left + 4 cards in a row to the right. (F&B layout.) // ============================================================ const CreReality = () => { const points = [ { n: '#1', head: 'Buildings operate with constant energy demand.', body: 'Commercial properties rely on continuous electricity for HVAC systems, lighting, elevators, parking infrastructure, tenant operations, and building automation systems.', }, { n: '#2', head: 'Utility costs impact asset performance.', body: 'Rising electricity rates, peak demand charges, and operational inefficiencies directly affect NOI, operating expenses, and long-term property value.', }, { n: '#3', head: 'Tenants expect efficient, modern buildings.', body: 'Energy performance, comfort, and sustainability expectations continue to grow across office, retail, mixed-use, and multi-tenant commercial properties.', }, { n: '#4', head: 'Energy infrastructure supports long-term asset value.', body: 'Solar, storage, LED lighting, recommissioning, and electrical upgrades help reduce operating costs, improve building performance, and strengthen long-term portfolio resilience.', }, ]; return (
{/* Title block — left */}
Operational reality

Why energy matters in commercial real estate.

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

{p.head}

{p.body}

))}
); }; // ============================================================ // CreIncentives — Wise Blue. CRE incentives table. // Same row layout as the F&B / Mun / Agri incentives section. // ============================================================ const CreIncentives = () => { 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. Significant for CRE owners — applies even where the asset itself is leased to tenants.', }, { cat: 'Provincial', qty: 'Variable', name: 'Ontario Save on Energy — LED Lighting', body: 'Common-area, parking-lot, and tenant-space LED retrofits qualify. Incentive based on verified kWh and kW reduction. Improves NOI without solar.', }, { cat: 'Federal', qty: '100% CCA', name: 'Enhanced First Year Capital Cost Allowance', body: 'Accelerated depreciation on eligible clean energy investments — deductible in the first year. Improves project IRR meaningfully against a CRE asset\u2019s financial model.', }, { cat: 'IESO', qty: 'Ongoing', name: 'IESO Demand Response Programmes', body: 'Assets with battery storage or flexible loads can participate — generating ongoing revenue that improves NOI alongside the operating cost reduction.', }, ]; return (
{rows.map((r, i) => (
0{i+1}
{r.qty}

{r.name}

{r.body}

))}
); }; Object.assign(window, { CreHero, CreHeroCover, CreReality, CreIncentives });