Skip to content

Commit 248d395

Browse files
fix/remove discord links (#101)
## Summary by Sourcery Documentation: - Update support documentation to remove references to Discord and emphasize email support. Co-authored-by: saeeddawod <saeed.dawod@gmail.com>
1 parent aa3f862 commit 248d395

File tree

6 files changed

+15
-64
lines changed

6 files changed

+15
-64
lines changed

docs/launch-platform/self-hosted/installation-guide/introduction.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ Note: This is just an example. Actual values will be collected during the prereq
134134

135135
### Support Channels
136136
* Email: support@settlemint.com
137-
* Join our Discord community
138137
* Schedule technical consultation
139138
* Contact your account manager
140139

docs/launch-platform/self-hosted/installation-guide/prerequisites/overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ As you complete each prerequisite, you'll need to collect specific information r
158158

159159
### Support
160160
* Email: support@settlemint.com
161-
* Join our Discord community
162161
* Schedule technical consultation
163162
* Contact your account manager
164163

docs/support/support.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# Contact us
1+
# Contact Us
22

33
We are here to provide support for all your troubleshooting and technical questions.
44

5-
## Discord community
5+
## Reach Us
66

7-
Join our [Discord server](https://discord.com/invite/Mt5yqFrey9) and get answers from our team as well as meet other developers working with SettleMint.
7+
Email us at **[support@settlemint.com](mailto:support@settlemint.com)** for any assistance.
88

9-
## Create a ticket
10-
11-
Create a support ticket on our [support portal](http://client.support.settlemint.com/)
9+
Our team is ready to help you with your queries.

docusaurus.config.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ const config: Config = {
116116
label: "SettleMint Platform",
117117
href: "https://console.settlemint.com",
118118
},
119-
{
120-
label: "Discord",
121-
href: "https://discord.gg/4WPatxDJ6A",
122-
},
123119
{
124120
label: "Twitter",
125121
href: "https://twitter.com/settlemintcom",

src/components/HomepageFeatures.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,7 @@ const FeatureList: FeatureItem[] = [
2727
<a href={'/documentation/docs/about-settlemint/intro/'}>Discover features</a>
2828
</>
2929
),
30-
},
31-
{
32-
title: 'Join the community',
33-
image: '/img/undraw_docusaurus_react.svg',
34-
description: (
35-
<>
36-
Ask all your questions, chat with other users and with the people who build the platform.{' '}
37-
<a href={'https://discord.gg/4WPatxDJ6A'}>Join us on Discord</a>
38-
</>
39-
),
40-
},
30+
}
4131
];
4232

4333
function Feature({ title, image, description }: FeatureItem) {

theme/index.tsx

Lines changed: 10 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import "@fontsource/figtree/400.css";
44
import "@fontsource/figtree/700.css";
55
import "@fontsource/figtree/900.css";
66
import aikidoIcon from "../static/img/about-settlemint/aikido-icon.png";
7-
import discordIcon from "../static/img/about-settlemint/discord-icon.png";
87
import platformImage from "../static/img/about-settlemint/platformModelBlue.png";
98
import platformScreenshot from "../static/img/about-settlemint/platformScreenshot.webp";
109
import supportIcon from "../static/img/about-settlemint/support-icon.png";
@@ -137,15 +136,15 @@ function Navigation() {
137136
</div>
138137
</div>
139138

140-
<div className={styles.container} style={{ marginBottom: "80px" }}>
139+
<div className={styles.container} style={{ marginBottom: "80px", display: "flex", justifyContent: "center" }}>
141140
<div className="row justify-content-center align-items-center">
142141
<div className="col-12">
143142
<div
144143
style={{
145144
display: "flex",
146145
flexDirection: "column",
147146
alignItems: "center",
148-
marginBottom: "20px",
147+
marginBottom: "40px",
149148
}}
150149
>
151150
<div style={{ textAlign: "center" }}>
@@ -159,11 +158,13 @@ function Navigation() {
159158
</p>
160159
</div>
161160
</div>
161+
162162
<div
163163
style={{
164164
display: "flex",
165-
flexDirection: "row",
166-
justifyContent: "center",
165+
flexDirection: "column",
166+
alignItems: "center",
167+
gap: "40px",
167168
}}
168169
>
169170
<div style={{ textAlign: "center" }}>
@@ -175,44 +176,12 @@ function Navigation() {
175176
/>
176177
<h3 className={styles.contactSupport}>Contact Support</h3>
177178
<p>
178-
Have an issue or question?
179+
Have a question or need assistance?
179180
<br />
180-
Log a support ticket and we will contact you!
181+
Email us at <a href="mailto:support@settlemint.com">support@settlemint.com</a>
181182
</p>
182-
<a
183-
className={styles.btnLink}
184-
href="https://client.support.settlemint.com/"
185-
>
186-
Create a Ticket
187-
</a>
188183
</div>
189-
<div style={{ textAlign: "center" }}>
190-
<img
191-
className={styles.icons}
192-
src={discordIcon}
193-
alt="SettleMint Platform"
194-
style={{ width: "30%" }}
195-
/>
196-
<h3 style={{ marginTop: "0px" }}>Join Discord</h3>
197-
<p>
198-
Ask a question in our Discord community and chat with other
199-
users
200-
</p>
201-
<a
202-
className={styles.btnLink}
203-
href="https://discord.com/invite/Mt5yqFrey9"
204-
>
205-
Join Discord Channel
206-
</a>
207-
</div>
208-
</div>
209-
<div
210-
style={{
211-
display: "flex",
212-
flexDirection: "row",
213-
justifyContent: "center",
214-
}}
215-
>
184+
216185
<div style={{ textAlign: "center" }}>
217186
<img
218187
className={styles.icons}
@@ -237,4 +206,4 @@ function Navigation() {
237206
);
238207
}
239208

240-
export default Navigation;
209+
export default Navigation;

0 commit comments

Comments
 (0)