Problem
The /about/team page currently renders initials-only placeholder avatars and shows "Bio coming soon" for all Board of Directors (Co-Chairs, Treasurer) and Core Team (Organizers) members.
Affected sections
- Leadership → Co-Chairs —
BoardCard component, teamGroups[0]
- Leadership → Treasurer —
BoardCard component, teamGroups[1]
- Core team → Organizers —
CoreCard component, teamGroups[2]
Expected behaviour
- Each leadership and organizer card displays a real headshot (or a supplied photo) instead of the initials circle.
- Each card has a real bio filled in (the
bio field in constants/team.ts).
What needs to happen
- Collect headshot photos from each board member and core organizer.
- Add image assets to
public/ and wire up an <Image> in AvatarLg / AvatarMd.
- Fill in the
bio field for each person in constants/team.ts.
Notes
- The
TeamMember type in constants/team.ts would need an optional avatarUrl (or image) field to support real photos.
- Fallback to initials when no image is supplied is fine to keep.
Problem
The
/about/teampage currently renders initials-only placeholder avatars and shows "Bio coming soon" for all Board of Directors (Co-Chairs, Treasurer) and Core Team (Organizers) members.Affected sections
BoardCardcomponent,teamGroups[0]BoardCardcomponent,teamGroups[1]CoreCardcomponent,teamGroups[2]Expected behaviour
biofield inconstants/team.ts).What needs to happen
public/and wire up an<Image>inAvatarLg/AvatarMd.biofield for each person inconstants/team.ts.Notes
TeamMembertype inconstants/team.tswould need an optionalavatarUrl(orimage) field to support real photos.