diff --git a/app/components/Onboarding/FormContainer.js b/app/components/Onboarding/FormContainer.js
index a8633698..4a26672d 100644
--- a/app/components/Onboarding/FormContainer.js
+++ b/app/components/Onboarding/FormContainer.js
@@ -1,3 +1,4 @@
+import { shell } from 'electron'
import React from 'react'
import PropTypes from 'prop-types'
import Isvg from 'react-inlinesvg'
@@ -16,7 +17,16 @@ const FormContainer = ({ title, description, back, next, children }) => (
-
+
+
+ shell.openExternal('https://ln-zap.github.io/zap-tutorials/zap-desktop-getting-started')
+ }
+ >
+ Need help?
+
+
diff --git a/app/components/Onboarding/FormContainer.scss b/app/components/Onboarding/FormContainer.scss
index 67d5ae5a..9030b983 100644
--- a/app/components/Onboarding/FormContainer.scss
+++ b/app/components/Onboarding/FormContainer.scss
@@ -18,6 +18,17 @@
flex-direction: row;
justify-content: space-between;
padding: 20px 40px;
+
+ .help {
+ color: $white;
+ text-decoration: underline;
+ cursor: pointer;
+ transition: all 0.25s;
+
+ &:hover {
+ opacity: 0.5;
+ }
+ }
}
.info {