Skip to content

Commit 032234b

Browse files
committed
add matrix links
1 parent 603fa6c commit 032234b

File tree

4 files changed

+32
-13
lines changed

4 files changed

+32
-13
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ Another good way to learn is to check out some notebooks from our community:
2929

3030
# Feedback ❤️
3131

32-
As always, we'd love to hear your thoughts and see your experiments, so [come and say hi on Discord](https://discord.gg/TcJ9TRC3SV) as well.
32+
As always, we'd love to hear your thoughts and see your experiments, so [come and say hi on Discord](https://discord.gg/TcJ9TRC3SV) or [Matrix](https://matrix.to/#/#typecell-space:matrix.org) as well.

docs/demos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ To showcase some of TypeCell's features, explore these demos from our community:
1111

1212
## Built something exciting?
1313

14-
Let us know [on discord](https://discord.gg/TcJ9TRC3SV) if you'd like to feature your own demo on this page!
14+
Let us know [on discord](https://discord.gg/TcJ9TRC3SV) or [Matrix](https://matrix.to/#/#typecell-space:matrix.org) if you'd like to feature your own demo on this page!

docs/manual/5. Imports and NPM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ setInterval(() => myConfetti({ particleCount: 70, origin: { y: 0 } }), 500);
4646
Libraries are loaded in your browser via [Skypack](https://www.skypack.dev/).
4747
Skypack support is best for modern libraries with ESM support, but not all NPM libraries are compatible.
4848

49-
NPM imports are work in progress. Can't get a library to work? Let us know on [Discord](https://discord.gg/TcJ9TRC3SV)!
49+
NPM imports are work in progress. Can't get a library to work? Let us know on [Discord](https://discord.gg/TcJ9TRC3SV) or [Matrix](https://matrix.to/#/#typecell-space:matrix.org)!
5050

5151
#### TypeScript
5252

packages/editor/src/app/main/components/startscreen/StartScreen.tsx

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -123,16 +123,27 @@ export const StartScreen = observer(() => {
123123
interact with a Notebook or use it as a starting point for your
124124
next project.
125125
</p>
126-
<a
127-
className={styles.discord}
128-
href="https://discord.gg/TcJ9TRC3SV"
129-
target="_blank"
130-
rel="noreferrer">
131-
<img
132-
alt="Discord"
133-
src="https://img.shields.io/badge/Join us on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"
134-
/>
135-
</a>
126+
<div className={styles.discord}>
127+
<a
128+
href="https://discord.gg/TcJ9TRC3SV"
129+
target="_blank"
130+
rel="noreferrer">
131+
<img
132+
alt="Discord"
133+
src="https://img.shields.io/badge/Join us on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"
134+
/>
135+
</a>
136+
&nbsp;
137+
<a
138+
href="https://matrix.to/#/#typecell-space:matrix.org"
139+
target="_blank"
140+
rel="noreferrer">
141+
<img
142+
alt="Matrix"
143+
src="https://img.shields.io/badge/Chat on matrix%20-%23000.svg?&style=for-the-badge&logo=matrix&logoColor=white"
144+
/>
145+
</a>
146+
</div>
136147
</div>
137148

138149
<div className={styles.overview + " row"}>
@@ -258,6 +269,14 @@ export const StartScreen = observer(() => {
258269
<span>Chat on discord</span>
259270
</a>
260271
</li>
272+
<li>
273+
<a
274+
target="_blank"
275+
href="https://matrix.to/#/#typecell-space:matrix.org"
276+
rel="noreferrer">
277+
<span>Chat on Matrix</span>
278+
</a>
279+
</li>
261280
</ul>
262281
</div>
263282
<div className={styles.bottom}>

0 commit comments

Comments
 (0)