diff --git a/data/projects.ts b/data/projects.ts index 10cccb0..3faa062 100644 --- a/data/projects.ts +++ b/data/projects.ts @@ -31,6 +31,7 @@ import { unirepProtocol } from "./projects/unirep-protocol" import { voicedeck } from "./projects/voice-deck" import { wax } from "./projects/wax" import { zk3 } from "./projects/zk3" +import { zkemail } from "./projects/zk-email" import { ZKKit } from "./projects/zk-kit" import { zkevmCommunity } from "./projects/zkevm-community" import { zkitter } from "./projects/zkitter" @@ -82,4 +83,5 @@ export const projects: ProjectInterface[] = [ zkp2p, zk3, voicedeck, + zkemail, ] diff --git a/data/projects/zk-email.ts b/data/projects/zk-email.ts new file mode 100644 index 0000000..4567013 --- /dev/null +++ b/data/projects/zk-email.ts @@ -0,0 +1,24 @@ +import { ProjectInterface } from "@/lib/types" + +const description = ` +` + +export const zkemail: ProjectInterface = { + id: "zk-email", + section: "grant", + projectStatus: "active", + image: "", + name: "zk-email", + tldr: "", + description, + links: { + github: "https://github.com/zkemail", + twitter: "https://twitter.com/zkemail", + }, + tags: { + themes: [], + types: [], + keywords: [], + builtWith: [], + }, +}