Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions Cotabby/UI/Settings/Panes/AboutPaneView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,20 @@ struct AboutPaneView: View {
.tint(.blue)
}
} label: {
Text(
"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."
)
VStack(alignment: .leading, spacing: 8) {
Text(
"Cotabby started from a simple belief: AI should run on your device, respect your privacy, "
+ "and remain open to everyone. That's why Cotabby is open source, local-first, and built "
+ "to give users full control over their own hardware and data."
)

Text(
"We're building Cotabby in our spare time, one release at a time. Every feature, bug fix, "
+ "and support reply takes real time and care from two university students trying to keep "
+ "this project alive. If Cotabby has been useful to you, please consider supporting our "
+ "mission."
)
}
.foregroundStyle(.secondary)
.fixedSize(horizontal: false, vertical: true)
}
Expand Down