Files
pse.dev/data/projects/nfctap.ts
2024-11-06 23:35:58 +01:00

45 lines
988 B
TypeScript

import {
ProjectCategory,
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"
const content: ProjectContent = {
en: {
tldr: "This project was built to activate NFCs at SBC and FtC and learn from it for a larger Devconnect experience with 200 cards and 5,000 attendees.",
description: `
NFC activations at SBC and FtC residency
`,
},
}
export const nfctap: ProjectInterface = {
id: "nfctap",
projectStatus: ProjectStatus.ACTIVE,
category: ProjectCategory.APPLICATION,
section: "pse",
content,
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"],
},
}