mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-09 06:08:03 -05:00
39 lines
1.8 KiB
TypeScript
39 lines
1.8 KiB
TypeScript
export type SiteConfig = typeof siteConfig
|
|
|
|
export const siteConfig = {
|
|
name: "Privacy Stewards of Ethereum",
|
|
description:
|
|
"Enhancing Ethereum through cryptographic research and collective experimentation.",
|
|
url: "https://pse.dev",
|
|
links: {
|
|
twitter: "https://x.com/PrivacyEthereum",
|
|
github: "https://github.com/privacy-ethereum",
|
|
docs: "https://ui.shadcn.com",
|
|
discord: "https://discord.com/invite/sF5CT5rzrR",
|
|
articles: "https://pse.dev/blog",
|
|
youtube: "https://www.youtube.com/@PrivacyEthereum",
|
|
jobs: "https://jobs.lever.co/ethereumfoundation/?department=Ethereum%20Foundation&team=Privacy%20and%20Scaling%20Explorations",
|
|
termOfUse: "https://ethereum.org/en/terms-of-use/",
|
|
privacyPolicy: "https://ethereum.org/en/privacy-policy/",
|
|
activity:
|
|
"https://pse-team.notion.site/50dcf22c5191485e93406a902ae9e93b?v=453023f8227646dd949abc34a7a4a138&pvs=4",
|
|
report: "https://reports.pse.dev/",
|
|
firstGoodIssue: "https://gfi.pse.dev/",
|
|
discordAnnouncementChannel:
|
|
"https://discord.com/channels/943612659163602974/969614451089227876",
|
|
accelerationProgram:
|
|
"https://github.com/privacy-ethereum/acceleration-program",
|
|
coreProgram:
|
|
"https://docs.google.com/forms/d/e/1FAIpQLSendzYY0z_z7fZ37g3jmydvzS9I7OWKbY2JrqAnyNqeaBHvMQ/viewform",
|
|
magicians: "https://ethereum-magicians.org",
|
|
researchAndDevelopmentDiscord:
|
|
"https://discord.com/channels/595666850260713488/1410354969386946560",
|
|
},
|
|
addGithubResource:
|
|
"https://github.com/privacy-ethereum/website-v2/blob/main/content/resources.md",
|
|
editProjectPage: (id: string) =>
|
|
`https://github.com/privacy-ethereum/website-v2/blob/main/content/projects/${id}.md`,
|
|
editBlogPage: (slug: string) =>
|
|
`https://github.com/privacy-ethereum/website-v2/blob/main/content/articles/${slug}.md`,
|
|
}
|