idk colots
Some checks are pending
Build and Release IPA / Build IPA (push) Waiting to run

This commit is contained in:
cranci1 2024-12-24 09:11:18 +01:00
parent a364e7d573
commit f36e16e20a
2 changed files with 8 additions and 8 deletions

View file

@ -46,14 +46,14 @@ struct AboutView: View {
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text("cranci1") Text("cranci1")
.font(.headline) .font(.headline)
.foregroundColor(.yellow) .foregroundColor(.pink)
Text("YAY it's me") Text("YAY it's me")
.font(.subheadline) .font(.subheadline)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
Spacer() Spacer()
Image(systemName: "safari") Image(systemName: "safari")
.foregroundColor(.yellow) .foregroundColor(.pink)
} }
} }
} }
@ -107,14 +107,14 @@ struct AboutView: View {
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text("50/50") Text("50/50")
.font(.headline) .font(.headline)
.foregroundColor(.orange) .foregroundColor(.mint)
Text("Discord Helper & Designer") Text("Discord Helper & Designer")
.font(.subheadline) .font(.subheadline)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
Spacer() Spacer()
Image(systemName: "safari") Image(systemName: "safari")
.foregroundColor(.orange) .foregroundColor(.mint)
} }
} }
Button(action: { Button(action: {
@ -131,14 +131,14 @@ struct AboutView: View {
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text("ibh-rad") Text("ibh-rad")
.font(.headline) .font(.headline)
.foregroundColor(.orange) .foregroundColor(.purple)
Text("Discord Helper & Bug Hunter") Text("Discord Helper & Bug Hunter")
.font(.subheadline) .font(.subheadline)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
Spacer() Spacer()
Image(systemName: "safari") Image(systemName: "safari")
.foregroundColor(.orange) .foregroundColor(.purple)
} }
} }
Button(action: { Button(action: {
@ -155,14 +155,14 @@ struct AboutView: View {
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text("Seiike") Text("Seiike")
.font(.headline) .font(.headline)
.foregroundColor(.orange) .foregroundColor(.yellow)
Text("Discord Helper") Text("Discord Helper")
.font(.subheadline) .font(.subheadline)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
Spacer() Spacer()
Image(systemName: "safari") Image(systemName: "safari")
.foregroundColor(.orange) .foregroundColor(.yellow)
} }
} }
} }