aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-23 13:00:55 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-23 13:00:55 +0200
commit4152f3f180134f3a5ebc7bffc3946ac57ec49c22 (patch)
treed1c004460964f880b3962d4a255bd533096eec40 /src/components/services
parentUse API URL from store for workspaces and announcements (diff)
downloadferdium-app-4152f3f180134f3a5ebc7bffc3946ac57ec49c22.tar.gz
ferdium-app-4152f3f180134f3a5ebc7bffc3946ac57ec49c22.tar.zst
ferdium-app-4152f3f180134f3a5ebc7bffc3946ac57ec49c22.zip
Improve onboarding experience
Diffstat (limited to 'src/components/services')
-rw-r--r--src/components/services/content/Services.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/services/content/Services.js b/src/components/services/content/Services.js
index 4c5976f8d..9fe737529 100644
--- a/src/components/services/content/Services.js
+++ b/src/components/services/content/Services.js
@@ -63,14 +63,17 @@ export default @observer class Services extends Component {
63 <img src="./assets/images/logo.svg" alt="Logo" style={{ maxHeight: '50vh' }} /> 63 <img src="./assets/images/logo.svg" alt="Logo" style={{ maxHeight: '50vh' }} />
64 <h1>{intl.formatMessage(messages.welcome)}</h1> 64 <h1>{intl.formatMessage(messages.welcome)}</h1>
65 { !isLoggedIn && ( 65 { !isLoggedIn && (
66 <p>Please open settings, choose a Ferdi server and click &quot;Login&quot; in the bottom left corner.</p> 66 <>
67 <p>Please login to use Ferdi.</p>
68 <p>Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.</p>
69 </>
67 ) } 70 ) }
68 <Appear 71 <Appear
69 timeout={300} 72 timeout={300}
70 transitionName="slideUp" 73 transitionName="slideUp"
71 > 74 >
72 <Link to={isLoggedIn ? '/settings/services' : '/settings/app'} className="button"> 75 <Link to={isLoggedIn ? '/settings/services' : '/auth/welcome'} className="button">
73 { isLoggedIn ? intl.formatMessage(messages.getStarted) : 'Open settings' } 76 { isLoggedIn ? intl.formatMessage(messages.getStarted) : 'Login' }
74 </Link> 77 </Link>
75 </Appear> 78 </Appear>
76 </div> 79 </div>