about summary refs log tree commit diff
path: root/src/view/screens/TermsOfService.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/TermsOfService.tsx')
-rw-r--r--src/view/screens/TermsOfService.tsx16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/view/screens/TermsOfService.tsx b/src/view/screens/TermsOfService.tsx
index e079b03dd..09b2a7f22 100644
--- a/src/view/screens/TermsOfService.tsx
+++ b/src/view/screens/TermsOfService.tsx
@@ -1,14 +1,14 @@
 import React from 'react'
 import {View} from 'react-native'
 import {useFocusEffect} from '@react-navigation/native'
+import {Text} from 'view/com/util/text/Text'
+import {TextLink} from 'view/com/util/Link'
 import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types'
 import {ViewHeader} from '../com/util/ViewHeader'
 import {useStores} from 'state/index'
 import {ScrollView} from 'view/com/util/Views'
 import {usePalette} from 'lib/hooks/usePalette'
 import {s} from 'lib/styles'
-import Html from '../../locale/en/terms-of-service'
-import {H1} from '@expo/html-elements'
 
 type Props = NativeStackScreenProps<CommonNavigatorParams, 'TermsOfService'>
 export const TermsOfServiceScreen = (_props: Props) => {
@@ -26,10 +26,14 @@ export const TermsOfServiceScreen = (_props: Props) => {
       <ViewHeader title="Terms of Service" />
       <ScrollView style={[s.hContentRegion, pal.view]}>
         <View style={[s.p20]}>
-          <H1 style={[pal.text, s.bold, s.pb20, {marginVertical: 0}]}>
-            Terms of Service
-          </H1>
-          <Html />
+          <Text style={pal.text}>
+            The Terms of Service have been moved to{' '}
+            <TextLink
+              style={pal.link}
+              href="https://blueskyweb.xyz/support/tos"
+              text="blueskyweb.xyz/support/tos"
+            />
+          </Text>
         </View>
         <View style={s.footerSpacer} />
       </ScrollView>