about summary refs log tree commit diff
path: root/src/view/shell/desktop/RightNav.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r--src/view/shell/desktop/RightNav.tsx24
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}>
+            &nbsp;&middot;&nbsp;
+          </Text>
+          <TextLink
+            type="md"
+            style={pal.link}
+            href="/support/privacy"
+            text="Privacy Policy"
+          />
+        </View>
       </View>
     </View>
   )