-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new account section for priority support
- Loading branch information
Showing
4 changed files
with
131 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,6 +342,55 @@ const AccountSubscription: FunctionComponent = function () { | |
</div> | ||
</div> | ||
)} | ||
|
||
{!isUserLoading && | ||
(userData?.plan === 'SOLO' || | ||
userData?.plan === 'TEAM') && ( | ||
<div className='card card-bleed shadow-light-lg mb-6'> | ||
<div className='card-header'> | ||
<h4 className='mb-0'>Email support</h4> | ||
</div> | ||
<div className='card-body'> | ||
<div className='list-group list-group-flush'> | ||
<div className='list-group-item'> | ||
<p className='mb-0'> | ||
Contact us at{' '} | ||
<a href='mailto:[email protected]'> | ||
[email protected] | ||
</a> | ||
</p> | ||
<small className='text-gray-700'> | ||
Usual response time is between 24 and 48 hours | ||
</small> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
)} | ||
|
||
{!isUserLoading && userData?.plan === 'ENTERPRISE' && ( | ||
<div className='card card-bleed shadow-light-lg mb-6'> | ||
<div className='card-header'> | ||
<h4 className='mb-0'>Priority support</h4> | ||
</div> | ||
<div className='card-body'> | ||
<div className='list-group list-group-flush'> | ||
<div className='list-group-item'> | ||
<p className='mb-0'> | ||
Contact us at{' '} | ||
<a href='mailto:[email protected]'> | ||
[email protected] | ||
</a> | ||
</p> | ||
<small className='text-gray-700'> | ||
Guaranteed response time of one business day (9 am | ||
to 5 pm CET/CEST, Monday to Friday). | ||
</small> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -543,9 +543,9 @@ const Terms: FunctionComponent = function () { | |
<p> | ||
The Support Service will be conducted through written means, | ||
which you can choose at your discretion. By default, | ||
communication will be made via email to [email protected]. | ||
Please note that live audio or video calls are not included in | ||
the support service. | ||
communication will be made via email, to the address indicated | ||
in your account settings. Please note that live audio or video | ||
calls are not included in the support service. | ||
</p> | ||
<p> | ||
Please note that support services do not cover assistance with | ||
|