mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 08:08:02 -05:00
19 lines
468 B
TypeScript
19 lines
468 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const summa: ProjectInterface = {
|
|
id: "summa",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "summa.svg",
|
|
name: "Summa",
|
|
links: {
|
|
github: "https://github.com/summa-dev",
|
|
},
|
|
tags: {
|
|
keywords: ["Anonymity/privacy", "Computational Integrity"],
|
|
themes: ["build", "play"],
|
|
types: ["Infrastructure/protocol", "Application"],
|
|
builtWith: ["halo2"],
|
|
},
|
|
}
|