Skip to content

Commit 79cca25

Browse files
committed
about page
1 parent 58d58ab commit 79cca25

File tree

2 files changed

+20
-22
lines changed

2 files changed

+20
-22
lines changed

FitCount/About/AboutView.swift

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,26 @@ import SwiftUI
99

1010
struct AboutView: View {
1111
var body: some View {
12-
VStack(spacing: 50) {
13-
Image("QuickPose-Logo")
14-
.resizable()
15-
.scaledToFit()
16-
17-
18-
VStack(spacing: 10) {
19-
Text("Our app is powered by QuickPose.AI iOS SDK.")
20-
Link(
21-
"Learn more about QuickPose.AI",
22-
destination: URL(string: "https://quickpose.ai")!
23-
).font(.headline)
24-
}
25-
26-
Spacer()
27-
28-
VStack(alignment: .leading) {
29-
Link("Give us feedback", destination: URL(string: "https://quickpose.ai")!)
30-
.font(.headline)
31-
}
32-
.padding()
33-
.cornerRadius(8)
12+
NavigationView {
13+
VStack(spacing: 50) {
14+
VStack(spacing: 10) {
15+
Text("Our app is powered by QuickPose.ai iOS SDK.")
16+
.padding(.top, 50)
17+
Link(
18+
"Learn more about QuickPose.ai",
19+
destination: URL(string: "http://linktr.ee/quickpose?utm_source=fitcounter")!
20+
).font(.headline)
21+
}
22+
23+
Spacer()
24+
25+
VStack(alignment: .leading) {
26+
Link("Help us improve", destination: URL(string: "https://forms.gle/ebHP58NeeYGEoBcb8")!)
27+
.font(.headline)
28+
}
29+
.padding()
30+
.cornerRadius(8)
31+
}.navigationBarTitle("About")
3432
}
3533
}
3634
}
Binary file not shown.

0 commit comments

Comments
 (0)