Skip to content

Commit

Permalink
Merge pull request #136 from GTBitsOfGood/madeline/130-landing-page-q…
Browse files Browse the repository at this point in the history
…uote

added quote to landing page
  • Loading branch information
dpang314 authored Sep 25, 2023
2 parents 6256096 + 33ae869 commit 352de65
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mobile/screens/Onboarding/LandingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ export default function LandingScreen(props: any) {
</TouchableOpacity>
</View>
) : null}
<View style={styles.quoteContainer}>
<Text style={styles.quoteText}>{`"Not all wounds are visible"`}</Text>
</View>
</View>
}
/>
Expand Down Expand Up @@ -144,4 +147,13 @@ const styles = StyleSheet.create({
width: "100%",
height: "100%",
},
quoteContainer: {
marginTop: 100,
alignItems: "center",
},
quoteText: {
fontFamily: "Baskerville",
fontStyle: "italic",
fontSize: 22,
},
});

0 comments on commit 352de65

Please sign in to comment.