mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 08:08:02 -05:00
28 lines
955 B
TypeScript
28 lines
955 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
|
|
const description = `
|
|
VoiceDeck isn't just a platform; it's a movement. By enabling citizens to fund journalism that makes a real difference, we're crafting a narrative where every contribution paints a stroke on the canvas of our collective future. Join us to foster a legacy where journalism is powered by the very communities it serves.
|
|
`
|
|
|
|
export const voicedeck: ProjectInterface = {
|
|
id: "voice-deck",
|
|
section: "collaboration",
|
|
projectStatus: "active",
|
|
image: "voiceDeck.svg",
|
|
name: "VoiceDeck",
|
|
tldr: "From Individual Actions to Collective Impact, Every Voice Makes a Difference",
|
|
description,
|
|
links: {
|
|
github: "https://github.com/VoiceDeck",
|
|
website: "https://voicedeck.org/",
|
|
twitter: "https://twitter.com/VoiceDeckDAO",
|
|
},
|
|
tags: {
|
|
keywords: ["Public goods"],
|
|
themes: ["play"],
|
|
types: ["Application"],
|
|
builtWith: ["anonAadhaar", "Hypercerts"],
|
|
},
|
|
}
|