diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx index 9ba067a2f..e34b9f9b0 100644 --- a/src/screens/Settings/AboutSettings.tsx +++ b/src/screens/Settings/AboutSettings.tsx @@ -78,7 +78,7 @@ export function AboutSettingsScreen({}: Props) { @@ -86,7 +86,7 @@ export function AboutSettingsScreen({}: Props) { diff --git a/src/screens/Takendown.tsx b/src/screens/Takendown.tsx index 660aecf1a..f19a62c0f 100644 --- a/src/screens/Takendown.tsx +++ b/src/screens/Takendown.tsx @@ -212,10 +212,10 @@ export function Takendown() { Your account was found to be in violation of the{' '} - Bluesky Social Terms of Service + syu.is Terms of Service . You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this diff --git a/src/view/screens/PrivacyPolicy.tsx b/src/view/screens/PrivacyPolicy.tsx index a89eaadc4..71ce7c81f 100644 --- a/src/view/screens/PrivacyPolicy.tsx +++ b/src/view/screens/PrivacyPolicy.tsx @@ -1,51 +1,49 @@ import React from 'react' -import {View} from 'react-native' -import {msg, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' -import {useFocusEffect} from '@react-navigation/native' - -import {usePalette} from '#/lib/hooks/usePalette' -import { - type CommonNavigatorParams, - type NativeStackScreenProps, -} from '#/lib/routes/types' -import {s} from '#/lib/styles' -import {useSetMinimalShellMode} from '#/state/shell' -import {TextLink} from '#/view/com/util/Link' -import {Text} from '#/view/com/util/text/Text' -import {ScrollView} from '#/view/com/util/Views' +import {ScrollView} from 'react-native' import * as Layout from '#/components/Layout' -import {ViewHeader} from '../com/util/ViewHeader' - -type Props = NativeStackScreenProps -export const PrivacyPolicyScreen = (_props: Props) => { - const pal = usePalette('default') - const {_} = useLingui() - const setMinimalShellMode = useSetMinimalShellMode() - - useFocusEffect( - React.useCallback(() => { - setMinimalShellMode(false) - }, [setMinimalShellMode]), - ) +import {useSetTitle} from '#/lib/hooks/useSetTitle' +import {atoms as a, useTheme} from '#/alf' +import {Text} from '#/components/Typography' + +export function PrivacyPolicyScreen() { + useSetTitle('Privacy Policy') + const t = useTheme() return ( - - - - - - The Privacy Policy has been moved to{' '} - - - - - + + Privacy Policy + + Data Collection + + syu.is collects minimal data necessary to provide the service. This includes your account information, posts, and interactions on the AT Protocol network. + + + Data Storage + + Your data is stored on the AT Protocol network. Posts and profile information are public by default as part of the decentralized social network. + + + Third Parties + + We do not sell your personal information to third parties. Your data may be visible to other users and services on the AT Protocol network. + + + Contact + + For privacy-related questions, please contact the administrator. + + + 日本語 + + syu.isはサービス提供に必要な最小限のデータのみを収集します。投稿やプロフィール情報はAT Protocolネットワーク上で公開されます。個人情報を第三者に販売することはありません。 + + + + Last updated: 2025 + ) diff --git a/src/view/screens/TermsOfService.tsx b/src/view/screens/TermsOfService.tsx index d843c713c..c6a36268b 100644 --- a/src/view/screens/TermsOfService.tsx +++ b/src/view/screens/TermsOfService.tsx @@ -1,49 +1,49 @@ import React from 'react' -import {View} from 'react-native' -import {msg, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' -import {useFocusEffect} from '@react-navigation/native' - -import {usePalette} from '#/lib/hooks/usePalette' -import { - type CommonNavigatorParams, - type NativeStackScreenProps, -} from '#/lib/routes/types' -import {s} from '#/lib/styles' -import {useSetMinimalShellMode} from '#/state/shell' -import {TextLink} from '#/view/com/util/Link' -import {Text} from '#/view/com/util/text/Text' -import {ScrollView} from '#/view/com/util/Views' +import {ScrollView} from 'react-native' import * as Layout from '#/components/Layout' -import {ViewHeader} from '../com/util/ViewHeader' - -type Props = NativeStackScreenProps -export const TermsOfServiceScreen = (_props: Props) => { - const pal = usePalette('default') - const setMinimalShellMode = useSetMinimalShellMode() - const {_} = useLingui() - - useFocusEffect( - React.useCallback(() => { - setMinimalShellMode(false) - }, [setMinimalShellMode]), - ) +import {useSetTitle} from '#/lib/hooks/useSetTitle' +import {atoms as a, useTheme} from '#/alf' +import {Text} from '#/components/Typography' + +export function TermsOfServiceScreen() { + useSetTitle('Terms of Service') + const t = useTheme() return ( - - - - - The Terms of Service have been moved to{' '} - - - - + + Terms of Service + + Acceptance + + By using syu.is, you agree to these terms. If you do not agree, please do not use the service. + + + Prohibited Content + + Do not post illegal content, spam, or harass others. Do not impersonate others or spread misinformation. + + + Account Termination + + The administrator reserves the right to suspend or terminate accounts that violate these terms. + + + Disclaimer + + This service is provided "as is" without warranty of any kind. + + + 日本語 + + syu.isを利用することで、これらの利用規約に同意したものとみなします。違法なコンテンツの投稿、スパム、他者への嫌がらせは禁止です。管理者は規約違反のアカウントを停止する権利を有します。本サービスは現状のまま提供され、いかなる保証もありません。 + + + + Last updated: 2025 + )