Privacy policy shown

This commit is contained in:
2026-04-09 14:28:40 -05:00
parent accaa16643
commit f678e36584
2 changed files with 10 additions and 0 deletions

View File

@@ -113,6 +113,10 @@ struct LoginView: View {
.padding(.horizontal, 24)
Spacer()
Link("Privacy Policy", destination: URL(string: "https://labwise.wahwa.com/privacy")!)
.font(.footnote)
.foregroundStyle(Color(.brandMutedForeground))
}
}
.navigationBarHidden(true)

View File

@@ -91,6 +91,12 @@ struct ProfileView: View {
}
}
Section {
Link(destination: URL(string: "https://labwise.wahwa.com/privacy")!) {
Text("Privacy Policy")
}
}
Section {
Button(role: .destructive) {
Task { await viewModel.signOut() }