From 4997ff01aeef00a8c61b2cd568367dbdca1a43b5 Mon Sep 17 00:00:00 2001 From: Kalidou Diagne Date: Tue, 4 Jun 2024 20:03:06 +0200 Subject: [PATCH] add zk email --- data/projects.ts | 2 ++ data/projects/zk-email.ts | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 data/projects/zk-email.ts 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: [], + }, +}