diff --git a/Shared/views/SettingsView/SettingsView.swift b/Shared/views/SettingsView/SettingsView.swift index ec43061..9954264 100644 --- a/Shared/views/SettingsView/SettingsView.swift +++ b/Shared/views/SettingsView/SettingsView.swift @@ -151,9 +151,16 @@ struct SettingsView: View { .padding() if showSpecialThanks { - Text(String(localized: "settings_view_special_thanks_to_body")) - .foregroundColor(textColor) - .padding() + Divider() + Link("Font Awesome", destination: URL(string: "https://fontawesome.com")!) + .accentColor(textColor) + .padding(.bottom) + + Divider() + + Link("Charts", destination: URL(string: "https://github.com/danielgindi/Charts")!) + .accentColor(textColor) + .padding(.bottom) } } }