mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 15:48:19 -05:00
26 lines
704 B
TypeScript
26 lines
704 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
const description = `
|
|
An anonymous, federated, chat application that uses Rate-Limiting Nullifier for spam prevention.
|
|
`
|
|
|
|
export const discreetly: ProjectInterface = {
|
|
id: "discreetly",
|
|
section: "pse",
|
|
projectStatus: "active",
|
|
image: "discreetly.svg",
|
|
name: "Discreetly",
|
|
tldr: "An anonymous, federated, chat application using ZK.",
|
|
description,
|
|
links: {
|
|
github: "https://github.com/Discreetly",
|
|
website: "https://app.discreetly.chat/",
|
|
},
|
|
tags: {
|
|
keywords: ["Anonymity/privacy", "Social"],
|
|
themes: ["play"],
|
|
types: ["Legos/dev tools", "Proof of concept", "Application"],
|
|
builtWith: ["rln", "semaphore"],
|
|
},
|
|
}
|