Member/Ecology revamp.
Some checks failed
Test / vitest (push) Failing after 7m23s
Test / playwright (push) Has been skipped
Test / visual (push) Has been skipped
Test / Notify on failure (push) Successful in 2s

This commit is contained in:
Jennie Robinson Faber 2026-04-14 09:25:09 +01:00
parent fc7ec52574
commit 59d6e97787
31 changed files with 1763 additions and 1010 deletions

View file

@ -216,31 +216,28 @@ const newEmail = ref("");
const isUpdatingEmail = ref(false);
const tiers = [
{ amount: 0, display: "$0", label: "Solidarity" },
{ amount: 5, display: "$5", label: "Supporter" },
{ amount: 15, display: "$15", label: "Sustainer" },
{ amount: 30, display: "$30", label: "Builder" },
{ amount: 50, display: "$50", label: "Champion" },
{ amount: 0, display: "$0", label: "I need support right now" },
{ amount: 5, display: "$5", label: "I can contribute" },
{ amount: 15, display: "$15", label: "I can sustain the community" },
{ amount: 30, display: "$30", label: "I can support others too" },
{ amount: 50, display: "$50", label: "I want to sponsor multiple members" },
];
const circleOptions = [
{
value: "community",
label: "Community",
description:
"For anyone interested in cooperative game dev. Access discussions, events, and resources.",
description: "Exploring cooperative ideas",
},
{
value: "founder",
label: "Founder",
description:
"For those actively building or running a cooperative studio. Peer support and deep dives.",
description: "Building a cooperative studio",
},
{
value: "practitioner",
label: "Practitioner",
description:
"For professionals advising co-ops: lawyers, accountants, facilitators, consultants.",
description: "Experienced in cooperative practice",
},
];