From e2d823b3d58617aa233d1c2fc6f7a5f9017a1814 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 28 Sep 2022 12:29:35 +0800 Subject: [PATCH] Tagline and font changes to the welcome page --- apple/OmnivoreKit/Sources/App/Views/WelcomeView.swift | 3 ++- apple/OmnivoreKit/Sources/Views/Fonts.swift | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/WelcomeView.swift b/apple/OmnivoreKit/Sources/App/Views/WelcomeView.swift index 89b7aee19..6e3baa145 100644 --- a/apple/OmnivoreKit/Sources/App/Views/WelcomeView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/WelcomeView.swift @@ -33,7 +33,7 @@ struct WelcomeView: View { var headlineText: some View { Group { - Text("Never miss a great read.") + Text("Read-it-later for serious readers.") } .font(.appLargeTitle) } @@ -153,6 +153,7 @@ struct WelcomeView: View { action: { showEmailLoginModal = true }, label: { Text("Continue with Email") + .font(.appHeadline) .foregroundColor(.appGrayTextContrast) .underline() } diff --git a/apple/OmnivoreKit/Sources/Views/Fonts.swift b/apple/OmnivoreKit/Sources/Views/Fonts.swift index bf32124e6..40385127c 100644 --- a/apple/OmnivoreKit/Sources/Views/Fonts.swift +++ b/apple/OmnivoreKit/Sources/Views/Fonts.swift @@ -6,7 +6,7 @@ import SwiftUI public extension Font { /// 34pt, Inter-Regular static var appLargeTitle: Font { - .customFont(InterFont.regular.rawValue, size: 34, relativeTo: .largeTitle) + .customFont(InterFont.bold.rawValue, size: 34, relativeTo: .largeTitle) } /// 28pt, Inter-Regular