faq redirect

This commit is contained in:
Martina 2020-12-10 19:06:22 -08:00
parent 0033c30bab
commit 304af24e30
2 changed files with 17 additions and 1 deletions

View File

@ -79,6 +79,14 @@ export default class SidebarFAQ extends React.Component {
world. Join our Slack or head over to our GitHub to get in on the action. world. Join our Slack or head over to our GitHub to get in on the action.
</System.P> </System.P>
</div> </div>
<System.P
css={STYLES_TEXT}
style={{ cursor: "pointer" }}
onClick={() => this.props.onAction({ type: "SIDEBAR", value: "SIDEBAR_HELP" })}
>
Still have questions? Send us a message!
</System.P>
</div> </div>
); );
} }

View File

@ -91,7 +91,7 @@ export default class SidebarCreateSlate extends React.Component {
<div css={STYLES_GROUPING}> <div css={STYLES_GROUPING}>
<System.P css={STYLES_HEADER}>Your Info</System.P> <System.P css={STYLES_HEADER}>Your Info</System.P>
<System.P css={STYLES_TEXT} style={{ marginTop: 12 }}> <System.P css={STYLES_TEXT} style={{ marginTop: 12 }}>
Let us know how we can reach you. Let us know how we can reach you!
</System.P> </System.P>
<System.Input <System.Input
name="name" name="name"
@ -136,6 +136,14 @@ export default class SidebarCreateSlate extends React.Component {
<System.ButtonPrimary full onClick={this._handleSubmit} loading={this.state.loading}> <System.ButtonPrimary full onClick={this._handleSubmit} loading={this.state.loading}>
Send message Send message
</System.ButtonPrimary> </System.ButtonPrimary>
<System.P
css={STYLES_TEXT}
style={{ cursor: "pointer", marginTop: 24 }}
onClick={() => this.props.onAction({ type: "SIDEBAR", value: "SIDEBAR_FAQ" })}
>
In the meantime, feel free to view our FAQ!
</System.P>
</div> </div>
); );
} }