mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-04-23 03:01:03 -04:00
Merge pull request #179 from privacy-scaling-explorations/pop-in-projects
POP in projects list
This commit is contained in:
@@ -8,6 +8,7 @@ import { anonAadhaar } from "./projects/anon-aadhaar"
|
||||
import { anonKlub } from "./projects/anon-klub"
|
||||
import { bandada } from "./projects/bandada"
|
||||
import { channel4 } from "./projects/channel-4"
|
||||
import { chiquito } from "./projects/chiquito"
|
||||
import { Coco } from "./projects/coco"
|
||||
import { cryptkeeper } from "./projects/cryptkeeper"
|
||||
import { discreetly } from "./projects/discreetly"
|
||||
@@ -17,11 +18,13 @@ import { eigenTrust } from "./projects/eigen-trust"
|
||||
import { Interep } from "./projects/interep"
|
||||
import { jubmoji } from "./projects/jubmoji"
|
||||
import { maci } from "./projects/maci"
|
||||
import { maciRPGF } from "./projects/maci-rpgf"
|
||||
import { nfctap } from "./projects/nfctap"
|
||||
import { p0tion } from "./projects/p0tion"
|
||||
import { p256 } from "./projects/p256"
|
||||
import { pollenLabs } from "./projects/pollen-labs"
|
||||
import { PerpetualPowersOfTau } from "./projects/powers-of-tau"
|
||||
import { proofOfPassport } from "./projects/proof-of-passport"
|
||||
import { pseSecurity } from "./projects/pse-security"
|
||||
import { rln } from "./projects/rln"
|
||||
import { semaphore } from "./projects/semaphore"
|
||||
@@ -39,8 +42,6 @@ import { zkitter } from "./projects/zkitter"
|
||||
import { zkml } from "./projects/zkml"
|
||||
import { Zkopru } from "./projects/zkopru"
|
||||
import { zkp2p } from "./projects/zkp2p"
|
||||
import { chiquito } from "./projects/chiquito"
|
||||
import { maciRPGF } from "./projects/maci-rpgf"
|
||||
|
||||
export const ProjectLinkIconMap: ProjectLinkType = {
|
||||
github: GithubIcon,
|
||||
@@ -89,5 +90,6 @@ export const projects: ProjectInterface[] = [
|
||||
voicedeck,
|
||||
zkemail,
|
||||
chiquito,
|
||||
maciRPGF
|
||||
maciRPGF,
|
||||
proofOfPassport,
|
||||
]
|
||||
|
||||
31
data/projects/proof-of-passport.ts
Normal file
31
data/projects/proof-of-passport.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { ProjectInterface } from "@/lib/types"
|
||||
|
||||
const description = `
|
||||
Proof of passport is developing tools to let users generate proofs of humanity, nationality and age using their government-issued passport. It unlocks uses cases in proof of unique identity, sybil resistance and selective disclosure of private data.
|
||||
`
|
||||
|
||||
export const proofOfPassport: ProjectInterface = {
|
||||
id: "proof-of-passport",
|
||||
section: "grant",
|
||||
projectStatus: "active",
|
||||
image: "proof-of-passport.jpg",
|
||||
name: "Proof of Passport",
|
||||
tldr: "Proof of passport lets you check a passport is valid in zero-knowledge",
|
||||
description,
|
||||
links: {
|
||||
github: "https://github.com/zk-passport/proof-of-passport",
|
||||
website: "https://proofofpassport.com",
|
||||
twitter: "https://x.com/proofofpassport",
|
||||
telegram: "https://t.me/proofofpassport",
|
||||
},
|
||||
tags: {
|
||||
keywords: [
|
||||
"Passports",
|
||||
"Identity",
|
||||
"Anonymity/privacy,",
|
||||
"Signatures",
|
||||
"Social",
|
||||
],
|
||||
builtWith: ["circom", "snarkjs"],
|
||||
},
|
||||
}
|
||||
@@ -51,6 +51,7 @@ export type ProjectLinkWebsite =
|
||||
| "discord"
|
||||
| "twitter"
|
||||
| "youtube"
|
||||
| "telegram"
|
||||
|
||||
export type ProjectLinkType = Partial<Record<ProjectLinkWebsite, string>>
|
||||
export type ProjectExtraLinkType = "buildWith" | "play" | "research" | "learn"
|
||||
|
||||
BIN
public/project-banners/proof-of-passport.jpg
Normal file
BIN
public/project-banners/proof-of-passport.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
Reference in New Issue
Block a user