Skip to content

Commit

Permalink
fix: links and contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ifokeev committed Mar 2, 2024
1 parent 51ebef1 commit 2dda4f7
Show file tree
Hide file tree
Showing 6 changed files with 139 additions and 51 deletions.
24 changes: 21 additions & 3 deletions docs/links-and-contacts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,26 @@ sidebar_label: Links and Contacts
sidebar_position: 13
---

## Links and Contacts
## Contact Information

For user support and inquiries, you can reach out to us through the following channels:

- **Email Support**: [Contact us at hello@synmetrix.org](mailto:hello@synmetrix.org)
- **Issue Tracking**: [Check out our GitHub Issues](https://github.com/mlcraft-io/mlcraft/issues)
- **Slack Community**: [Join the Synmetrix Community on Slack](https://join.slack.com/t/mlcraft/shared_invite/zt-1x2gxwn37-J3tTvCR5xSFVfxwUU_YKtg)
- **Meeting Scheduling**: [Reserve a time on our calendar](https://cal.com/synmetrix/30min)

Our support team is dedicated to assisting you with any questions or problems you might encounter while using Synmetrix.

## Useful links

* [GitHub](https://github.com/mlcraft-io) / Source code and issue tracking
* [Docker Hub](https://hub.docker.com/u/synmetrix) / Docker images
* [Twitter](https://twitter.com/trySynmetrix) / Updates and news
* [Youtube](https://www.youtube.com/channel/UCEPlxaWYrdOaf9IXjD2IRTg) / Video tutorials and demos

## Upcoming Updates and Changes

We are continuously working to improve Synmetrix and provide you with the best possible experience. Please subscribe to our [newsletter](https://docs.synmetrix.org/newsletter) to stay updated on the latest news and upcoming changes.

import DocCardList from '@theme/DocCardList';

<DocCardList />
25 changes: 0 additions & 25 deletions docs/links-and-contacts/support-updates/index.md

This file was deleted.

20 changes: 0 additions & 20 deletions docs/links-and-contacts/useful-links/index.md

This file was deleted.

63 changes: 63 additions & 0 deletions src/pages/Newsletter/index.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

p {
margin-bottom: 1rem;
color: #333;
font-size: 1.2rem;
}

.form {
max-width:400px;
padding:2rem;
margin:0 auto;
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
label {
font-size:1rem;
line-height:1.5rem;
display:inline-block;
margin-bottom:0.5rem;
}
input, select {
font-size:1rem;
line-height:1.5rem;
width:100%;
color:black;
border:1px solid #ced4da;
border-radius:6px;
padding:0.375rem 0.75rem;
box-sizing: border-box;
}
input[type=checkbox], input[type=radio] {
width:auto;
}
button {
font-size:1rem;
line-height:1.5rem;
background-color:black;
color:white;
display:block;
cursor:pointer;
border-radius:0.25rem;
vertical-align:middle;
border:1px solid transparent;
padding:0.375rem 0.75rem;
}
.fRow {
margin-bottom:1.2rem;
}
.aBadge {
margin-top:1.8rem;
font-size: 12px;
color:#888;
}
.aBadge a {
margin-top:1.8rem;
font-size: 12px;
color:#888;
}
34 changes: 34 additions & 0 deletions src/pages/Newsletter/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React from "react";
import styles from "./index.module.css";

const Newsletter = () => (
<div className={styles.container}>
<form
className={styles.form}
action="https://app.audienceful.com/api/subscribe/NpAB3KJPUTej5ayujTBM9F/"
method="post"
>
<div>
<h1>Synmetrix</h1>
<p>Subscribe to our newsletter to stay updated on our latest developments</p>
</div>
<div className={styles.fRow}>
<label htmlFor="email">Email Address</label>
<input
name="email"
type="email"
id="email"
placeholder="Enter your email..."
required />
</div>
<button type="submit">Submit</button>
<div className={styles.aBadge}>
<a href="https://github.com/mlcraft-io/mlcraft" target="_blank" rel="noopener noreferrer">
Check out our open source project
</a>
</div>
</form>
</div>
);

export default Newsletter;
24 changes: 21 additions & 3 deletions versioned_docs/version-1.0.0/links-and-contacts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,26 @@ sidebar_label: Links and Contacts
sidebar_position: 13
---

## Links and Contacts
## Contact Information

For user support and inquiries, you can reach out to us through the following channels:

- **Email Support**: [Contact us at hello@synmetrix.org](mailto:hello@synmetrix.org)
- **Issue Tracking**: [Check out our GitHub Issues](https://github.com/mlcraft-io/mlcraft/issues)
- **Slack Community**: [Join the Synmetrix Community on Slack](https://join.slack.com/t/mlcraft/shared_invite/zt-1x2gxwn37-J3tTvCR5xSFVfxwUU_YKtg)
- **Meeting Scheduling**: [Reserve a time on our calendar](https://cal.com/synmetrix/30min)

Our support team is dedicated to assisting you with any questions or problems you might encounter while using Synmetrix.

## Useful links

* [GitHub](https://github.com/mlcraft-io) / Source code and issue tracking
* [Docker Hub](https://hub.docker.com/u/synmetrix) / Docker images
* [Twitter](https://twitter.com/trySynmetrix) / Updates and news
* [Youtube](https://www.youtube.com/channel/UCEPlxaWYrdOaf9IXjD2IRTg) / Video tutorials and demos

## Upcoming Updates and Changes

We are continuously working to improve Synmetrix and provide you with the best possible experience. Please subscribe to our [newsletter](https://docs.synmetrix.org/newsletter) to stay updated on the latest news and upcoming changes.

import DocCardList from '@theme/DocCardList';

<DocCardList />

0 comments on commit 2dda4f7

Please sign in to comment.