Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Latest commit

 

History

History
51 lines (35 loc) · 2.25 KB

File metadata and controls

51 lines (35 loc) · 2.25 KB

Membership Page

URL: /membership/ File: src/pages/membership.astro

What the Page Shows

The membership proposition: steering and general membership benefits, real member stories, fee tables, and the process to join.

Dynamic Elements

Logo marquee

The standard LogoMarquee component showing active member logos. See logo marquee doc.

Organisation logos on story cards

The ProjectCards component shows member stories with scrolling organisation logos. Organisation names are resolved against members.json to display logos:

const logoMap = new Map(membersData.filter(m => m.logo && !m.hideLogo)
  .map(m => [m.companyName.toLowerCase(), `/assets/${m.logo}`]));

Note: this filter intentionally includes inactive members (no m.active check) so historical stories still show correct logos.

GA4 event tracking

Clicks on membership enquiry mailto links fire a membership_enquiry GA4 event with click_location set to the nearest section heading. See Google Analytics doc.

Static Elements

  • Hero — heading, CTA (mailto link)
  • TextBlock — "Members bring their hardest problems"
  • Steering proposition — TextWithImage
  • Contact section — dark banner with email
  • Steering benefits — FeatureGrid (4 items: bespoke plan, direct resources, executive deep dives, guaranteed seats)
  • Member stories — ProjectCards with 4 hardcoded stories (Practitioner course, SOFT, Carbon Aware SDK, SCI). Each story has hardcoded org names resolved to logos
  • General membership benefits — FeatureGrid (6 items)
  • How It Works — FeatureGrid (8-step process from first conversation to monthly reports)
  • Fee tables — two tables (already an LF member vs. not yet), with desktop and mobile layouts. Fees range from Free (academic/government) to $100,000 (steering)
  • CTA banner

How to Update

Change Where
Update fee tables Edit the table data in membership.astro
Add/change member stories Edit the ProjectCards props in membership.astro
Update steering benefits Edit the FeatureGrid in membership.astro
Change contact email Edit the mailto link (currently help@greensoftware.foundation)