mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-14 00:28:28 -05:00
27 lines
605 B
TypeScript
27 lines
605 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"],
|
|
},
|
|
extraLinks: {
|
|
learn: [
|
|
{
|
|
label: "Documentation",
|
|
url: "https://summa.gitbook.io/summa",
|
|
},
|
|
],
|
|
},
|
|
}
|