@@ -5,30 +5,30 @@ import { useGetAbout } from '@/hooks/useGetAbout';
5
5
import { IconAlertCircle , IconBook2 , IconBrandGithub , IconBrandSlack , IconBusinessplan } from '@tabler/icons-react' ;
6
6
7
7
const helpResources = [
8
+ {
9
+ icon : IconBusinessplan ,
10
+ title : 'Production support' ,
11
+ description : 'Get production support' ,
12
+ href :
'mailto:[email protected] ?subject=Production%20Support%20Query' , //https://www.parseable.io/pricing
13
+ } ,
8
14
{
9
15
icon : IconBrandSlack ,
10
16
title : 'Slack' ,
11
- description : 'Connect with us ' ,
17
+ description : 'Join the Slack community ' ,
12
18
href : 'https://launchpass.com/parseable' ,
13
19
} ,
14
20
{
15
21
icon : IconBrandGithub ,
16
22
title : 'GitHub' ,
17
- description : 'Find resources' ,
23
+ description : 'Find resources on GitHub ' ,
18
24
href : 'https://github.com/parseablehq/parseable' ,
19
25
} ,
20
26
{
21
27
icon : IconBook2 ,
22
28
title : 'Documentation' ,
23
- description : 'Learn more ' ,
29
+ description : 'Refer the documentation ' ,
24
30
href : 'https://www.parseable.io/docs/introduction' ,
25
31
} ,
26
- {
27
- icon : IconBusinessplan ,
28
- title : 'Get paid support' ,
29
- description : 'Get paid support' ,
30
- href :
'mailto:[email protected] ' , //https://www.parseable.io/pricing
31
- } ,
32
32
] ;
33
33
34
34
type HelpCardProps = {
@@ -72,7 +72,6 @@ const InfoModal: FC<InfoModalProps> = (props) => {
72
72
const { classes } = useInfoModalStyles ( ) ;
73
73
const {
74
74
container,
75
- parseableText,
76
75
aboutTitle,
77
76
aboutDescription,
78
77
actionBtn,
@@ -94,12 +93,8 @@ const InfoModal: FC<InfoModalProps> = (props) => {
94
93
centered >
95
94
< Box className = { container } >
96
95
97
- < Text className = { aboutTitle } >
98
- About < span className = { parseableText } > Parseable</ span >
99
- </ Text >
100
- < Text className = { aboutDescription } id = "info-modal-description" >
101
- Here you can find useful information about your Parseable instance.
102
- </ Text >
96
+ < Text className = { aboutTitle } > About Parseable</ Text >
97
+ < Text className = { aboutDescription } id = "info-modal-description" > Important info about your Parseable deployment</ Text >
103
98
{ error ? (
104
99
< Text className = { aboutDescription } > Error...</ Text >
105
100
) : loading ? (
@@ -113,14 +108,13 @@ const InfoModal: FC<InfoModalProps> = (props) => {
113
108
< Button
114
109
variant = "outline"
115
110
component = { 'a' }
116
- href = "mailto:support @parseable.io"
111
+ href = "mailto:sales @parseable.io?subject=Production%20Support%20Query "
117
112
target = "_blank"
118
113
className = { actionBtn }
119
114
>
120
- Upgrade to commercial license
115
+ Upgrade to production support
121
116
</ Button >
122
117
</ Box >
123
-
124
118
</ Box >
125
119
< Box className = { aboutTextBox } >
126
120
< Box className = { aboutTextInnerBox } >
@@ -164,16 +158,16 @@ const InfoModal: FC<InfoModalProps> = (props) => {
164
158
</ Box >
165
159
</ >
166
160
) : null }
167
-
168
-
169
- < Text className = { aboutTitle } > Need any help?</ Text >
170
- < Text className = { aboutDescription } > Here you can find useful resources and information.</ Text >
161
+
162
+ < Text className = { aboutTitle } > Need help?</ Text >
163
+ < Text className = { aboutDescription } > Ensure uninterrupted deployment</ Text >
171
164
172
165
< Box mt = { 15 } className = { helpIconContainer } >
173
166
{ helpResources . map ( ( data ) => (
174
167
< HelpCard key = { data . title } data = { data } />
175
168
) ) }
176
169
</ Box >
170
+
177
171
</ Box >
178
172
179
173
</ Modal >
0 commit comments