mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "Users of Jubmoji.quest tap NFC cards to collect signatures. By collecting these signatures, they complete quests.",
|
|
description: `
|
|
Jubmoji.quest is a place to keep personal, provable digital mementos from people you meet and places you visit IRL. Each time you tap a card, you collect a Jubmoji, a unique cryptographic signature that you can store privately and share as you wish!
|
|
|
|
The learnings from this experiment influenced the creation of [Cursive](https://pse.dev/en/projects/cursive) which continues to explore applications of cryptography for human connection.
|
|
`,
|
|
},
|
|
}
|
|
|
|
export const jubmoji: ProjectInterface = {
|
|
id: "jubmoji",
|
|
projectStatus: ProjectStatus.INACTIVE,
|
|
category: ProjectCategory.APPLICATION,
|
|
section: "archived",
|
|
content,
|
|
image: "jubmoji.webp",
|
|
name: "jubmoji.quest",
|
|
links: {
|
|
github: "https://github.com/jubmoji/jubmoji.quest",
|
|
website: "https://www.jubmoji.quest/",
|
|
},
|
|
tags: {
|
|
keywords: [
|
|
"anonymity/privacy",
|
|
"education",
|
|
"data portability",
|
|
"social",
|
|
"wallets",
|
|
"identity",
|
|
"key management",
|
|
"reputation",
|
|
"toolkits",
|
|
],
|
|
builtWith: ["snarkjs", "circom", "node"],
|
|
themes: ["build", "play"],
|
|
},
|
|
}
|