Skip to content

Commit

Permalink
Merge pull request #112 from BreadchainCoop/development
Browse files Browse the repository at this point in the history
add cw data
  • Loading branch information
subject026 authored Sep 1, 2024
2 parents 0ab9514 + 040c7d2 commit 822e4ac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
Binary file added public/project/citizen_wallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 20 additions & 2 deletions src/app/projectsMeta.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
type ProjectMeta = {
import { Hex } from "viem";

export type ProjectMeta = {
name: string;
order: number;
description: string;
logoSrc: string;
links: {
Expand All @@ -8,10 +11,11 @@ type ProjectMeta = {
};

export const projectsMeta: {
[key: string]: ProjectMeta;
[key: Hex]: ProjectMeta;
} = {
"0x7E1367998e1fe8Fab8f0bbF41e97cD6E0C891B64": {
name: "Labour DAO",
order: 1,
description:
"A DAO supporting workers who want to organize in web3 and out.",
logoSrc: "project/labor_dao.png",
Expand All @@ -22,6 +26,7 @@ export const projectsMeta: {
},
"0x5405e2D4D12AAdB57579E780458c9a1151b560F1": {
name: "Symbiota",
order: 2,
description:
"Event-focused organisations devoted to new forms of culture and enquiry.",
logoSrc: "project/symbiota.png",
Expand All @@ -32,6 +37,7 @@ export const projectsMeta: {
},
"0x5c22B3F03b3d8FFf56C9B2e90151512Cb3F3dE0F": {
name: "Crypto Commons",
order: 3,
description:
"Creating research and events on decentralized tech and the commons.",
logoSrc: "project/cca.png",
Expand All @@ -40,8 +46,19 @@ export const projectsMeta: {
"https://breadchain.notion.site/Crypto-Commons-Association-77818c4f425942479835e8bfec0b951b",
},
},
"0x9c8C8513974d22E8eA9F74f2860833Db107111E6": {
name: "Citizen Wallet",
order: 4,
description: "Open source tool stack to support Web3 community currencies.",
logoSrc: "project/citizen_wallet.png",
links: {
notion:
"https://breadchain.notion.site/Citizen-Wallet-0139bb3030f7442a8804459d717adb52?pvs=74",
},
},
"0x918dEf5d593F46735f74F9E2B280Fe51AF3A99ad": {
name: "Breadchain Core",
order: 5,
description:
"The core team developing the tech and design used by Breadchain.",
logoSrc: "project/core.png",
Expand All @@ -52,6 +69,7 @@ export const projectsMeta: {
},
"0x6A148b997e6651237F2fCfc9E30330a6480519f0": {
name: "Breadchain Treasury",
order: 6,
description:
"A co-owned treasury in Breadchain used for grants and sponsorships.",
logoSrc: "project/treasury.png",
Expand Down

0 comments on commit 822e4ac

Please sign in to comment.