cleaning up nav

This commit is contained in:
talksik
2021-12-20 03:32:55 -08:00
parent 91fc937b21
commit a3374050ff
@@ -15,7 +15,7 @@ struct CircleNavigationView: View {
var body: some View { var body: some View {
HStack(alignment: .center) { HStack(alignment: .center) {
Menu { Menu {
Button { Button(role: .destructive) {
print("manage inbox") print("manage inbox")
} label: { } label: {
Label("inbox", systemImage: "envelope.badge") Label("inbox", systemImage: "envelope.badge")
@@ -39,7 +39,7 @@ struct CircleNavigationView: View {
Button { Button {
self.navigationStack.push(OnboardingTrioView()) self.navigationStack.push(OnboardingTrioView())
} label: { } label: {
Label("Why?", systemImage: "sun.min") Label("why?", systemImage: "leaf")
.foregroundColor(NirvanaColor.teal) .foregroundColor(NirvanaColor.teal)
} }
@@ -50,11 +50,11 @@ struct CircleNavigationView: View {
} }
} label: { } label: {
Label("why?", systemImage: "leaf") Label("about us", systemImage: "globe.americas")
.foregroundColor(NirvanaColor.teal) .foregroundColor(NirvanaColor.teal)
} }
Button { Button(role: .destructive) {
print("log out button clicked") print("log out button clicked")
self.authSessionStore.logOut() self.authSessionStore.logOut()
@@ -84,7 +84,6 @@ struct CircleNavigationView: View {
.clipShape(Circle()) .clipShape(Circle())
.padding(5) .padding(5)
} }
} }
ScrollView(.horizontal) { ScrollView(.horizontal) {