mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-14 00:28:28 -05:00
35 lines
865 B
TypeScript
35 lines
865 B
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from '@/lib/types'
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: 'An anonymous, federated, chat application using ZK.',
|
|
description:
|
|
'An anonymous, federated, chat application that uses Rate-Limiting Nullifier for spam prevention.',
|
|
},
|
|
}
|
|
|
|
export const discreetly: ProjectInterface = {
|
|
id: 'discreetly',
|
|
projectStatus: ProjectStatus.INACTIVE,
|
|
category: ProjectCategory.APPLICATION,
|
|
section: 'pse',
|
|
content,
|
|
image: 'discreetly.svg',
|
|
name: 'Discreetly',
|
|
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'],
|
|
},
|
|
}
|