mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
29 lines
624 B
TypeScript
29 lines
624 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const nfctap: ProjectInterface = {
|
|
id: "nfctap",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "",
|
|
name: "nfctap.xyz",
|
|
links: {
|
|
github: "https://github.com/jubmoji/nfctap.xyz",
|
|
website: "https://www.nfctap.xyz/",
|
|
},
|
|
tags: {
|
|
keywords: [
|
|
"anonymity/privacy",
|
|
"education",
|
|
"data portability",
|
|
"social",
|
|
"wallets",
|
|
"identity",
|
|
"key management",
|
|
"reputation",
|
|
"toolkits",
|
|
],
|
|
builtWith: ["snarkjs", "circom", "node"],
|
|
themes: ["build", "play"],
|
|
},
|
|
}
|