mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const zkID: ProjectInterface = {
|
|
id: "zk-id",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "",
|
|
imageAlt: "ZK Identity Explorations",
|
|
name: "ZK-ID",
|
|
tags: {
|
|
keywords: ["Identity", "Credentials", "Standards", "SSI"],
|
|
themes: ["research"],
|
|
types: ["Legos/dev tools", "Lego sets/toolkits"],
|
|
},
|
|
}
|