-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove the telegram and add the discord link
- Loading branch information
1 parent
9408526
commit 3437dba
Showing
3 changed files
with
151 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import React from 'react'; | ||
import { View, Text, TouchableOpacity, Linking } from 'react-native'; | ||
import { ScrollView } from 'react-native-gesture-handler'; | ||
import { heightPercentageToDP as hp } from 'react-native-responsive-screen'; | ||
import {View, Text, TouchableOpacity, Linking} from 'react-native'; | ||
import {ScrollView} from 'react-native-gesture-handler'; | ||
import {heightPercentageToDP as hp} from 'react-native-responsive-screen'; | ||
|
||
import { SafeAreaView } from 'react-native-safe-area-context'; | ||
import {SafeAreaView} from 'react-native-safe-area-context'; | ||
import Ionicons from 'react-native-vector-icons/Ionicons'; | ||
import Entypo from 'react-native-vector-icons/Entypo'; | ||
import MaterialIcons from 'react-native-vector-icons/MaterialIcons'; | ||
import Header from '../../Components/UIComp/Header'; | ||
import Markdown from '../../Components/UIComp/MarkDown'; | ||
|
||
export function AboutUs({ navigation }) { | ||
export function AboutUs({navigation}) { | ||
return ( | ||
<SafeAreaView style={{ flex: 1, backgroundColor: '#222' }} edges={['top']}> | ||
<SafeAreaView style={{flex: 1, backgroundColor: '#222'}} edges={['top']}> | ||
<Header | ||
style={{ | ||
width: '100%', | ||
|
@@ -34,7 +34,7 @@ export function AboutUs({ navigation }) { | |
name="chevron-back" | ||
size={hp('3%')} | ||
color="#fff" | ||
style={{ marginRight: 10 }} | ||
style={{marginRight: 10}} | ||
/> | ||
</TouchableOpacity> | ||
<Text | ||
|
@@ -91,9 +91,9 @@ export function AboutUs({ navigation }) { | |
}}> | ||
Contact Us | ||
</Text> | ||
<View style={{ gap: 15, flexDirection: 'row' }}> | ||
<View style={{gap: 15, flexDirection: 'row'}}> | ||
<TouchableOpacity | ||
style={{ flexDirection: 'row', gap: 12 }} | ||
style={{flexDirection: 'row', gap: 12}} | ||
onPress={() => { | ||
//open email app with pre-filled email | ||
Linking.openURL('mailto:[email protected]'); | ||
|
@@ -103,7 +103,7 @@ export function AboutUs({ navigation }) { | |
|
||
{/* //github page */} | ||
<TouchableOpacity | ||
style={{ flexDirection: 'row', gap: 12 }} | ||
style={{flexDirection: 'row', gap: 12}} | ||
onPress={() => { | ||
Linking.openURL('https://github.com/p2devs/inknest-release'); | ||
}}> | ||
|
@@ -112,18 +112,18 @@ export function AboutUs({ navigation }) { | |
|
||
{/* //Linkdin page */} | ||
<TouchableOpacity | ||
style={{ flexDirection: 'row', gap: 12 }} | ||
style={{flexDirection: 'row', gap: 12}} | ||
onPress={() => { | ||
Linking.openURL('https://www.linkedin.com/company/p2-devs/'); | ||
}}> | ||
<Ionicons name="logo-linkedin" size={20} color="#007AFF" /> | ||
</TouchableOpacity> | ||
<TouchableOpacity | ||
style={{ flexDirection: 'row', gap: 12 }} | ||
style={{flexDirection: 'row', gap: 12}} | ||
onPress={() => { | ||
Linking.openURL('https://t.me/inknest'); | ||
Linking.openURL('https://discord.gg/WYwJefvWNT'); | ||
}}> | ||
<MaterialIcons name="telegram" size={20} color="#007AFF" /> | ||
<MaterialIcons name="discord" size={20} color="#007AFF" /> | ||
</TouchableOpacity> | ||
</View> | ||
</View> | ||
|
Oops, something went wrong.