// careers-hero-why.jsx // Careers page — C01 Hero + C02 Why work at GI // Light-led throughout (cream → cream-tinted), per user direction. // Editorial hero with a full-bleed photo plate below — same family as // the Energy Audits and Solar Calculator pages. // ============================================================ // Local accent tokens — sage led. No amber on careers. // ============================================================ const CAR_SAGE = '#5E8F6D'; const CAR_SAGE_SOFT = 'rgba(94,143,109,0.18)'; const CAR_SAGE_LINE = 'rgba(94,143,109,0.32)'; const CAR_SAGE_TINT = '#E8EFE9'; // Smooth-scroll to a section by id const scrollToId = (id) => { const el = document.getElementById(id); if (!el) return; const y = el.getBoundingClientRect().top + window.scrollY - 24; window.scrollTo({ top: y, behavior: 'smooth' }); }; // ============================================================ // C01 · HERO — Paper Cream, editorial. Photo plate below. // ============================================================ const CareersHero = () => (
); // ============================================================ // C02 · WHY WORK AT GREEN INTEGRATIONS — Paper Cream tint // 4 value blocks. Generous spacing, no icons-as-decoration filler. // ============================================================ const CareersWhy = () => { const blocks = [ { tag: 'The work', title: 'Real projects.', body: ( <> Commercial and industrial facilities across manufacturing, logistics, agriculture, food processing, and commercial real estate. Work tied directly to operational performance, infrastructure, and long-term energy strategy. ) }, { tag: 'The team', title: 'High ownership.', body: ( <> People here work across projects, clients, and disciplines with meaningful responsibility early on. The work is collaborative, fast-moving, and highly visible internally and externally. ) }, { tag: 'The scope', title: 'Integrated energy.', body: ( <> Solar, storage, electrification, lighting, controls, and energy strategy delivered together. Exposure to how commercial energy projects are evaluated, modelled, and deployed end-to-end. ) }, { tag: 'The map', title: 'Canada-wide.', body: ( <> Projects span Ontario, Alberta, BC, and Nova Scotia. Many roles are remote or hybrid, with opportunities to visit active commercial project sites across Canada. ) } ]; return (
{blocks.map((b, i) => (
= blocks.length - 2 ? 0 : 0) ? '1px solid rgba(15,33,51,0.12)' : 'none', borderRight: (i % 2 === 0) ? '1px solid rgba(15,33,51,0.12)' : 'none', paddingLeft: (i % 2 === 1) ? 56 : 0, display: 'flex', flexDirection: 'column', gap: 18 }}>
{b.tag}

{b.title}

{b.body}

))}
); }; Object.assign(window, { CareersHero, CareersWhy, CAR_SAGE, CAR_SAGE_SOFT, CAR_SAGE_LINE, CAR_SAGE_TINT, scrollToId });