diff --git a/Intake/Onboarding/InterestingModules.swift b/Intake/Onboarding/InterestingModules.swift index 9def12f..1a3a734 100644 --- a/Intake/Onboarding/InterestingModules.swift +++ b/Intake/Onboarding/InterestingModules.swift @@ -16,25 +16,21 @@ struct InterestingModules: View { var body: some View { SequentialOnboardingView( - title: "INTERESTING_MODULES_TITLE", - subtitle: "INTERESTING_MODULES_SUBTITLE", + title: "The Intake Process", + subtitle: "Intake works in 3 simple steps...", content: [ SequentialOnboardingView.Content( - title: "INTERESTING_MODULES_AREA1_TITLE", - description: "INTERESTING_MODULES_AREA1_DESCRIPTION" + title: "Log in to Firebase", + description: "Sign in or make an account so we can keep your information secure and accessible" ), SequentialOnboardingView.Content( - title: "INTERESTING_MODULES_AREA2_TITLE", - description: "INTERESTING_MODULES_AREA2_DESCRIPTION" + title: "Explain your Chief Complaint", + description: "What brings you in today? Give us an English description, and our AI model will summarize the key points" ), SequentialOnboardingView.Content( - title: "INTERESTING_MODULES_AREA3_TITLE", - description: "INTERESTING_MODULES_AREA3_DESCRIPTION" + title: "Fill in intake info", + description: "With the help of our AI model, quickly fill in prompts to complete electronic intake form with medical history, contact info, etc." ), - SequentialOnboardingView.Content( - title: "INTERESTING_MODULES_AREA4_TITLE", - description: "INTERESTING_MODULES_AREA4_DESCRIPTION" - ) ], actionText: "INTERESTING_MODULES_BUTTON", action: { diff --git a/Intake/Onboarding/Welcome.swift b/Intake/Onboarding/Welcome.swift index 818ea3b..54cab2a 100644 --- a/Intake/Onboarding/Welcome.swift +++ b/Intake/Onboarding/Welcome.swift @@ -16,35 +16,35 @@ struct Welcome: View { var body: some View { OnboardingView( - title: "WELCOME_TITLE", - subtitle: "WELCOME_SUBTITLE", + title: "Welcome to Intake", + subtitle: "Electronic medical forms made easy.", areas: [ OnboardingInformationView.Content( icon: { - Image(systemName: "apps.iphone") + Image(systemName: "list.bullet.clipboard") .accessibilityHidden(true) }, - title: "WELCOME_AREA1_TITLE", - description: "WELCOME_AREA1_DESCRIPTION" + title: "Modernize Patient Experience", + description: "Digitally replicate the traditional patient intake form to ensure up-to-date health records" ), OnboardingInformationView.Content( icon: { - Image(systemName: "shippingbox.fill") + Image(systemName: "heart.circle") .accessibilityHidden(true) }, - title: "WELCOME_AREA2_TITLE", - description: "WELCOME_AREA2_DESCRIPTION" + title: "Integrate Medical History", + description: "Intake automatically extracts key information from HealthKit and patient input." ), OnboardingInformationView.Content( icon: { - Image(systemName: "list.bullet.clipboard.fill") + Image(systemName: "bubble") .accessibilityHidden(true) }, - title: "WELCOME_AREA3_TITLE", - description: "WELCOME_AREA3_DESCRIPTION" + title: "Virtual Assistance", + description: "Our helpful AI survey assistant can answer clarifying questions." ) ], - actionText: "WELCOME_BUTTON", + actionText: "Get Started", action: { onboardingNavigationPath.nextStep() }