Files
pse.dev/data/projects.ts
2023-12-11 12:04:25 -06:00

83 lines
2.3 KiB
TypeScript

import GithubIcon from "@/public/social-medias/github-fill.svg"
import GlobeIcon from "@/public/social-medias/global-line.svg"
import { ProjectInterface, ProjectLinkType } from "@/lib/types"
import { anonAadhaar } from "./projects/anon-aadhaar"
import { anonKlub } from "./projects/anon-klub"
import { bandada } from "./projects/bandada"
import { channel4 } from "./projects/channel-4"
import { Coco } from "./projects/coco"
import { cryptkeeper } from "./projects/cryptkeeper"
import { discreetly } from "./projects/discreetly"
import { dslWorkingGroup } from "./projects/dsl-working-group"
import { ECIPHalo2 } from "./projects/ecip-halo2"
import { eigenTrust } from "./projects/eigen-trust"
import { Interep } from "./projects/interep"
import { maci } from "./projects/maci"
import { pollenLabs } from "./projects/pollen-labs"
import { PerpetualPowersOfTau } from './projects/powers-of-tau'
import { pseSecurity } from "./projects/pse-security"
import { rln } from "./projects/rln"
import { semaphore } from "./projects/semaphore"
import { summa } from "./projects/summa"
import { tlsn } from "./projects/tlsn"
import { trustedSetups } from "./projects/trusted-setups"
import { unirepProtocol } from "./projects/unirep-protocol"
import { wax } from "./projects/wax"
import { ZKKit } from "./projects/zk-kit"
import { zk3 } from "./projects/zk3"
import { zkevmCommunity } from "./projects/zkevm-community"
import { zkitter } from "./projects/zkitter"
import { zkml } from "./projects/zkml"
import { Zkopru } from "./projects/zkopru"
import { zkp2p } from "./projects/zkp2p"
import { p256 } from "./projects/p256"
import { p0tion } from "./projects/p0tion"
export const ProjectLinkIconMap: ProjectLinkType = {
github: GithubIcon,
website: GlobeIcon,
}
/**
* List of Projects
*
* Every 'description' props supports markdown syntax https://www.markdownguide.org/basic-syntax/
*/
export const projects: ProjectInterface[] = [
rln,
zkitter,
maci,
wax,
discreetly,
cryptkeeper,
semaphore,
pseSecurity,
zkevmCommunity,
bandada,
dslWorkingGroup,
zkml,
trustedSetups,
tlsn,
eigenTrust,
anonKlub,
summa,
anonAadhaar,
channel4,
pollenLabs,
unirepProtocol,
PerpetualPowersOfTau,
ECIPHalo2,
Coco,
Interep,
Zkopru,
ZKKit,
p256,
p0tion,
/**
* Grant projects hidden until we have grant tag
zkp2p,
zk3,
*/
]