about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-04-06 22:53:58 -0500
committerGitHub <noreply@github.com>2023-04-06 22:53:58 -0500
commit2f519bd66e7f0eeb374dfcd59043ad020196140e (patch)
tree50d00b731bcb151c7af7b98cf67ffe37a4e74d72 /src/Navigation.tsx
parenta74919ef33df7b9a4750ae06d99205fb77be95dd (diff)
downloadvoidsky-2f519bd66e7f0eeb374dfcd59043ad020196140e.tar.zst
Add tos, community guidelines, and copyright policy (#410)
* Add tos, community guidelines, and copyright policy

* Fix lint
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index a1dbc4af1..c10a9c249 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -37,6 +37,9 @@ import {DebugScreen} from './view/screens/Debug'
 import {LogScreen} from './view/screens/Log'
 import {SupportScreen} from './view/screens/Support'
 import {PrivacyPolicyScreen} from './view/screens/PrivacyPolicy'
+import {TermsOfServiceScreen} from './view/screens/TermsOfService'
+import {CommunityGuidelinesScreen} from './view/screens/CommunityGuidelines'
+import {CopyrightPolicyScreen} from './view/screens/CopyrightPolicy'
 
 const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
 
@@ -68,6 +71,12 @@ function commonScreens(Stack: typeof HomeTab) {
       <Stack.Screen name="Log" component={LogScreen} />
       <Stack.Screen name="Support" component={SupportScreen} />
       <Stack.Screen name="PrivacyPolicy" component={PrivacyPolicyScreen} />
+      <Stack.Screen name="TermsOfService" component={TermsOfServiceScreen} />
+      <Stack.Screen
+        name="CommunityGuidelines"
+        component={CommunityGuidelinesScreen}
+      />
+      <Stack.Screen name="CopyrightPolicy" component={CopyrightPolicyScreen} />
     </>
   )
 }