From 62a3e718830bcb51b4a7225e4c7ecb99a28935a6 Mon Sep 17 00:00:00 2001 From: mhartlage3 Date: Fri, 22 Sep 2023 03:48:00 -0400 Subject: [PATCH 1/2] added quote to landing page --- mobile/screens/Onboarding/LandingScreen.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mobile/screens/Onboarding/LandingScreen.tsx b/mobile/screens/Onboarding/LandingScreen.tsx index 3401896..47f9d31 100644 --- a/mobile/screens/Onboarding/LandingScreen.tsx +++ b/mobile/screens/Onboarding/LandingScreen.tsx @@ -53,6 +53,9 @@ export default function LandingScreen(props: any) { ) : null} + + "Not all wounds are visible" + } /> @@ -144,4 +147,13 @@ const styles = StyleSheet.create({ width: "100%", height: "100%", }, + quoteContainer: { + marginTop: 100, + alignItems: "center", + }, + quoteText: { + fontFamily: "Baskerville", + fontStyle: "italic", + fontSize: 22, + }, }); From 33ae869c378282734d1617290eac468cc6fc4c7b Mon Sep 17 00:00:00 2001 From: mhartlage3 Date: Fri, 22 Sep 2023 04:00:47 -0400 Subject: [PATCH 2/2] linting --- mobile/screens/Onboarding/LandingScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/screens/Onboarding/LandingScreen.tsx b/mobile/screens/Onboarding/LandingScreen.tsx index 47f9d31..b88478e 100644 --- a/mobile/screens/Onboarding/LandingScreen.tsx +++ b/mobile/screens/Onboarding/LandingScreen.tsx @@ -54,7 +54,7 @@ export default function LandingScreen(props: any) { ) : null} - "Not all wounds are visible" + {`"Not all wounds are visible"`} }