mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 06:38:03 -05:00
23 lines
1.1 KiB
TypeScript
23 lines
1.1 KiB
TypeScript
export type SiteConfig = typeof siteConfig
|
|
|
|
export const siteConfig = {
|
|
showLanguageSwitcher: true, // enable when we have more languages
|
|
showOnlyEnabledLanguages: true, // enable to show only enabled languages
|
|
name: "Privacy & Scaling Explorations",
|
|
description:
|
|
"Enhancing Ethereum through cryptographic research and collective experimentation.",
|
|
links: {
|
|
twitter: "https://twitter.com/privacyscaling",
|
|
github: "https://github.com/privacy-scaling-explorations",
|
|
docs: "https://ui.shadcn.com",
|
|
discord: "https://discord.com/invite/sF5CT5rzrR",
|
|
articles: "https://mirror.xyz/privacy-scaling-explorations.eth",
|
|
youtube: "https://www.youtube.com/@privacyscalingexplorations",
|
|
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/",
|
|
},
|
|
addGithubResource:
|
|
"https://github.com/privacy-scaling-explorations/website-v2/blob/main/app/%5Blang%5D/content/resources.md",
|
|
}
|