diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-06-14 20:00:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 20:00:28 -0500 |
commit | 56ec3bf89ec447fa590e89a0fa3ecf5f8e6e84b7 (patch) | |
tree | b4c08e293a6fdd17a06138b705e6b0fe7ca9d4ef /src/view/screens/CopyrightPolicy.tsx | |
parent | 3663ee57f3e3d83a03ca105e0dda11cd94f68c98 (diff) | |
download | voidsky-56ec3bf89ec447fa590e89a0fa3ecf5f8e6e84b7.tar.zst |
Move policy docs to blueskyweb.xyz (#881)
Diffstat (limited to 'src/view/screens/CopyrightPolicy.tsx')
-rw-r--r-- | src/view/screens/CopyrightPolicy.tsx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/view/screens/CopyrightPolicy.tsx b/src/view/screens/CopyrightPolicy.tsx index 8c478cbcb..9de4dc9e7 100644 --- a/src/view/screens/CopyrightPolicy.tsx +++ b/src/view/screens/CopyrightPolicy.tsx @@ -1,14 +1,14 @@ import React from 'react' import {View} from 'react-native' import {useFocusEffect} from '@react-navigation/native' -import {H1} from '@expo/html-elements' +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/copyright-policy' type Props = NativeStackScreenProps<CommonNavigatorParams, 'CopyrightPolicy'> export const CopyrightPolicyScreen = (_props: Props) => { @@ -26,10 +26,14 @@ export const CopyrightPolicyScreen = (_props: Props) => { <ViewHeader title="Copyright Policy" /> <ScrollView style={[s.hContentRegion, pal.view]}> <View style={[s.p20]}> - <H1 style={[pal.text, s.bold, s.pb20, {marginVertical: 0}]}> - Copyright Policy - </H1> - <Html /> + <Text style={pal.text}> + The Copyright Policy has been moved to{' '} + <TextLink + style={pal.link} + href="https://blueskyweb.xyz/support/community-guidelines" + text="blueskyweb.xyz/support/community-guidelines" + /> + </Text> </View> <View style={s.footerSpacer} /> </ScrollView> |