diff options
author | Eric Bailey <git@esb.lol> | 2025-08-06 15:16:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-06 15:16:08 -0500 |
commit | 75094f48603e120605642e20e1048d839be23788 (patch) | |
tree | e3322725ffb54743fdda7dbc0398bcdc593912b7 /src/lib/constants.ts | |
parent | 328aa2be9482f77cb1cf86c5d227fdcee9981b16 (diff) | |
download | voidsky-75094f48603e120605642e20e1048d839be23788.tar.zst |
[LEG-203] Add onboarding text for policy updates (#8783)
* Add onboarding text for policy updates * Add gate, add to other case * Update other UI cases to use Admonitions * Th * Update date
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 3f0d49989..ab52b8710 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -207,3 +207,10 @@ export const PUBLIC_APPVIEW_DID = 'did:web:api.bsky.app' export const PUBLIC_STAGING_APPVIEW_DID = 'did:web:api.staging.bsky.dev' export const DEV_ENV_APPVIEW = `http://localhost:2584` // always the same + +export const webLinks = { + tos: `https://bsky.social/about/support/tos`, + privacy: `https://bsky.social/about/support/privacy-policy`, + community: `https://bsky.social/about/support/community-guidelines`, + communityDeprecated: `https://bsky.social/about/support/community-guidelines-deprecated`, +} |