// cre2-page-2.jsx
// Commercial Real Estate Industry Page (v2) — Part 2
// Solutions (Soft Green w/ CRE schematic) + Featured Project (Vicwest with photo slider, no IMPACT).
// ============================================================
// Eyebrow — small monospace label used at top of section
// ============================================================
const Eyebrow = ({ children, style }) => (
{children}
);
// ============================================================
// CreBuildingSchematic — Single-storey industrial CRE asset.
// Long flat-roof building (matches the Commercial Solar /
// Warehousing visual vocabulary). Solar panels sit FLAT on the
// roof. LED high-bays are ceiling-mounted only.
// ============================================================
const CreBuildingSchematic = ({ activeIndex }) => {
const W = 540;
const H = 360;
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)';
// --- Building geometry ---
// Footprint: x 50→490, ground y=282, roof y=116 (single floor, flat roof)
// Roof panel band: y 122→144 (panels sit ON the roof, not floating)
// Ceiling LED band: y 156 (just below roof inside building)
const zones = [
// 01 Commercial Solar — rooftop panel array (sitting on the parapet)
{ id: 0, label: '01', cx: 270, cy: 90,
hl: },
// 02 LED Lighting — ceiling fixtures inside
{ id: 1, label: '02', cx: 270, cy: 172,
hl: },
// 03 Energy Audits — utility / meter cabinet on left exterior
{ id: 2, label: '03', cx: 30, cy: 230,
hl: },
// 04 EV Charging — parking strip on right
{ id: 3, label: '04', cx: 510, cy: 270,
hl: },
];
return (
);
};
// ============================================================
// CreSolutions — Solutions for this sector section
// ============================================================
const CreSolutions = () => {
const rows = [
{ idx: '01', icon: 'sun', name: 'Commercial Solar', zone: 'Rooftop',
tag: 'Turn unused roof into revenue.',
why: 'Large flat CRE rooftops are unused real estate. On-site solar reduces grid electricity purchases — directly improving NOI and asset value at typical CRE cap rates.',
href: 'Solutions - Commercial Solar.html' },
{ idx: '02', icon: 'lightbulb', name: 'LED Lighting', zone: 'Common areas & tenants',
tag: 'Reduce operating costs immediately.',
why: 'Common-area, parking-lot, and tenant-space LED retrofits reduce operating costs immediately. saveONenergy incentives cover a significant portion of project cost. Improves NOI before solar is sized.',
href: 'Solutions - LED Lighting.html' },
{ idx: '03', icon: 'clipboard-check', name: 'Energy Audits', zone: 'Whole-building',
tag: 'Establish the baseline.',
why: 'BEPS reporting requires documented energy and emissions baselines. The audit also uncovers HVAC, controls, and envelope efficiencies that further reduce operating cost.',
href: 'Solutions - Energy Audits.html' },
{ idx: '04', icon: 'plug-zap', name: 'EV Charging', zone: 'Parking & garage',
tag: 'Build before tenants demand it.',
why: 'Adding EV charging now — before tenant demand forces a rush retrofit — is significantly cheaper. On-site solar provides a cost-effective power source and supports tenant retention.',
href: 'Solutions - EV Charging.html' },
];
// Per screenshot: highlight LED Lighting by default (index 1)
const [active, setActive] = React.useState(1);
React.useEffect(() => {
if (window.lucide) window.lucide.createIcons();
}, [active]);
return (
{/* Title / description grid */}
Solutions for this sector
What CRE projects typically involve.
For commercial real estate, the typical sequence is energy audit →
LED retrofit → rooftop solar → EV charging — each stage building on
the last and improving NOI and BEPS positioning along the way.
{/* Schematic + list */}
{/* LEFT — Building schematic */}
INTEGRTED ENERGY SYSTEMS
{/* Bottom caption — solution title and position only */}