// section-pillars-process.jsx — v3: visual + structured. // Pillars: cream. Process: deep-ink with connector line + icons. // ============================================================ // Three Pillars — Conserve, Power, Transform // ============================================================ const ThreePillars = () => { const pillars = [ { num: '01', title: 'Conserve', summary: 'Audit and measure first. Eliminate waste in lighting, HVAC, and controls before adding new systems.', bullets: ['Industrial-grade energy audits and metering', 'LED retrofits and HVAC recommissioning', 'Utility bill forensics and tariff optimisation'], icon: 'gauge', href: '/solutions/energy-audits/', }, { num: '02', title: 'Power', summary: 'Generate and store the electricity you already use — rooftop solar, ground-mount, and batteries sized to your load profile.', bullets: ['Commercial rooftop and ground-mount solar', 'Battery energy storage systems', 'Interconnection and PPA structuring'], icon: 'sun', href: '/solutions/commercial-solar/', }, { num: '03', title: 'Transform', summary: 'Electrify fleets, heat, and processes to lock in decades of operating savings and reduce carbon exposure.', bullets: ['EV charging infrastructure for fleets', 'Heat-pump and process electrification', 'Load management and demand response'], icon: 'zap', href: '/solutions/ev-charging/', }, ]; return ( {pillars.map(p => ( {p.num} {p.title} {p.summary} {p.bullets.map(b => ( {b} ))} Explore {p.title.toLowerCase()} → ))} ); }; // ============================================================ // HowItWorks — deep-ink surface, horizontal flow with connector line // ============================================================ const HowItWorks = () => { const steps = [ { num: '01', icon: 'search', title: 'Assess', copy: 'A site visit and utility-bill forensics define the baseline — loads, tariffs, roof structure, and interconnection capacity.', artifact: 'Assessment report + baseline model', }, { num: '02', icon: 'drafting-compass', title: 'Design', copy: 'Engineers model generation, storage, and load management together — sized for your operation, not a catalog part number.', artifact: 'System design + IRR and payback model', }, { num: '03', icon: 'hammer', title: 'Install', copy: 'Our crews — not a subcontractor chain — build, commission, and connect every project on schedule.', artifact: 'Commissioned system + utility sign-off', }, { num: '04', icon: 'activity', title: 'Operate', copy: 'Monitoring, service contracts, and performance reviews protect your economics for the full twenty-five year life.', artifact: 'Monitoring + annual performance reviews', }, ]; return ( {/* Horizontal step flow */} {/* Connector line */} {/* Dot markers on the line */} {[0,1,2,3].map(i => ( ))} {steps.map((s) => ( {/* Icon badge aligned with the connector dot */} STEP {s.num} {s.title} {s.copy} DELIVERABLE {s.artifact} ))} ); }; Object.assign(window, { ThreePillars, HowItWorks });
{p.summary}
{s.copy}