diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-13 20:34:01 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-13 20:34:01 -0500 |
commit | 6533d7dd084ad8cdd479a0d9b416f94c809d96e1 (patch) | |
tree | 65eb1a3b71b3fa1ed79e5ca7f03715215ad1c629 /src/view/shell | |
parent | 56cf890debeb9872f791ccb992a5587f2c05fd9e (diff) | |
download | voidsky-6533d7dd084ad8cdd479a0d9b416f94c809d96e1.tar.zst |
Add /support and /support/privacy
Diffstat (limited to 'src/view/shell')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index a196951af..58fb31392 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -6,6 +6,7 @@ import {DesktopSearch} from './Search' import {Text} from 'view/com/util/text/Text' import {TextLink} from 'view/com/util/Link' import {FEEDBACK_FORM_URL} from 'lib/constants' +import {s} from 'lib/styles' export const DesktopRightNav = observer(function DesktopRightNav() { const pal = usePalette('default') @@ -17,12 +18,23 @@ export const DesktopRightNav = observer(function DesktopRightNav() { Welcome to Bluesky! This is a beta application that's still in development. </Text> - <TextLink - type="md" - style={pal.link} - href={FEEDBACK_FORM_URL} - text="Send feedback" - /> + <View style={[s.flexRow]}> + <TextLink + type="md" + style={pal.link} + href={FEEDBACK_FORM_URL} + text="Send feedback" + /> + <Text type="md" style={pal.textLight}> + · + </Text> + <TextLink + type="md" + style={pal.link} + href="/support/privacy" + text="Privacy Policy" + /> + </View> </View> </View> ) |