From 5716578c2050b0816821a455dc8c6865c865a39c Mon Sep 17 00:00:00 2001 From: ericholguin Date: Fri, 26 May 2023 15:20:43 -0600 Subject: [PATCH] setupview: add why we need nostr view --- damus/Views/SetupView.swift | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/damus/Views/SetupView.swift b/damus/Views/SetupView.swift index 2e1d5f85..792ff097 100644 --- a/damus/Views/SetupView.swift +++ b/damus/Views/SetupView.swift @@ -105,6 +105,20 @@ struct WhatIsNostr: View { } } } + +struct WhyWeNeedNostr: View { + var body: some View { + HStack(alignment: .top) { + Image("lightbulb") + VStack(alignment: .leading) { + Text("Why we need nostr?") + .fontWeight(.bold) + .padding(.vertical, 10) + + Text("Social media has developed into a key way information flows around the world. Unfortunately, our current social media systems are broken") + .foregroundColor(DamusColors.mediumGrey) + } + } } }