diff --git a/App.js b/App.js index 5aca2ec..a6d9823 100644 --- a/App.js +++ b/App.js @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, Text, View } from 'react-native'; +import { StyleSheet, Text, View, TouchableHighlight, Linking, Image } from 'react-native'; import codePush from 'react-native-code-push'; const styles = StyleSheet.create({ @@ -9,11 +9,29 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'center', }, + inner: { + flex: 1, + alignItems: 'center', + justifyContent: 'center', + }, + text: { + marginTop: 10, + fontSize: 20, + } }); +const onPress = () => { + Linking.openURL('https://www.quipper.com/career/'); +}; + const App = () => ( - Quipper is hiring React Native developers! + onPress()}> + + + Quipper is hiring React Native developers! + + ); diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..846b348 Binary files /dev/null and b/logo.png differ