From d94062f337f03e24089521db4018f15a4cefce25 Mon Sep 17 00:00:00 2001 From: Jacob Fu <141651335+FuJacob@users.noreply.github.com> Date: Thu, 28 May 2026 02:35:49 -0700 Subject: [PATCH] Update Support section copy and CTA Acknowledges that Cotabby is built in the maintainers' free time and asks more directly for support. Button becomes a heart-iconed "Support" label so the call to action is recognizable at a glance without leaning on the coffee metaphor. --- Cotabby/UI/SettingsView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cotabby/UI/SettingsView.swift b/Cotabby/UI/SettingsView.swift index f4a4185..107e0f0 100644 --- a/Cotabby/UI/SettingsView.swift +++ b/Cotabby/UI/SettingsView.swift @@ -559,14 +559,14 @@ struct SettingsView: View { Section("Support") { LabeledContent { Link(destination: URL(string: "https://ko-fi.com/cotabby")!) { - Text("Buy Us a Coffee") + Label("Support", systemImage: "heart.fill") } .buttonStyle(.borderedProminent) .tint(.blue) } label: { Text( - "Cotabby is free and open source, maintained by two university students. " - + "If it's useful to you, consider supporting development." + "Cotabby is free and open source, maintained by two university students in our free time. " + + "If it's useful to you, please consider supporting development." ) .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true)