mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 08:08:02 -05:00
35 lines
1023 B
TypeScript
35 lines
1023 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
const 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!
|
|
`
|
|
|
|
export const jubmoji: ProjectInterface = {
|
|
id: "jubmoji",
|
|
section: "pse",
|
|
projectStatus: "active",
|
|
image: "",
|
|
name: "jubmoji.quest",
|
|
tldr: "Users of Jubmoji.quest tap NFC cards to collect signatures. By collecting these signatures, they complete quests.",
|
|
description,
|
|
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"],
|
|
},
|
|
}
|