Skip to content

Commit 7e26cb5

Browse files
authored
fix discord links (#124)
1 parent 9d8f356 commit 7e26cb5

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BlockNote
22

3-
<a href="https://discord.gg/aDQxXezfNj"><img alt="Discord" src="https://img.shields.io/badge/Chat on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"/></a> <a href="https://matrix.to/#/#typecell-space:matrix.org"><img alt="Matrix" src="https://img.shields.io/badge/Chat on matrix%20-%23000.svg?&style=for-the-badge&logo=matrix&logoColor=white"/></a>
3+
<a href="https://discord.gg/Qc2QTTH5dF"><img alt="Discord" src="https://img.shields.io/badge/Chat on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"/></a> <a href="https://matrix.to/#/#typecell-space:matrix.org"><img alt="Matrix" src="https://img.shields.io/badge/Chat on matrix%20-%23000.svg?&style=for-the-badge&logo=matrix&logoColor=white"/></a>
44

55
[![npm version](https://badge.fury.io/js/%40blocknote%2Freact.svg)](https://badge.fury.io/js/%40blocknote%2Freact)
66

packages/website/docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const SIDEBAR_DEFAULT = [
105105
// { text: "API Reference (n2h)", link: "/api" },
106106
{
107107
text: "Community",
108-
link: "https://discord.com/channels/928190961455087667/1015169282444894219",
108+
link: "https://discord.gg/Qc2QTTH5dF",
109109
},
110110
],
111111
},
@@ -154,7 +154,7 @@ export default defineConfig({
154154
// { icon: "twitter", link: "https://twitter.com/TypeCellOS" },
155155
{
156156
icon: "discord",
157-
link: "https://discord.com/channels/928190961455087667/1015169282444894219",
157+
link: "https://discord.gg/Qc2QTTH5dF",
158158
},
159159
],
160160
},

packages/website/docs/.vitepress/theme/components/Home.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ defineProps<{
6060
<Sponsors />
6161
<h3>Contributors:</h3>
6262
<Contributors />
63-
<CTAButton
64-
href="https://discord.com/channels/928190961455087667/1015169282444894219"
65-
layout="simple"
63+
<CTAButton href="https://discord.gg/Qc2QTTH5dF" layout="simple"
6664
>Join the community and get involved!</CTAButton
6765
>
6866
</div>

packages/website/docs/docs/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ On top of that, it comes with a modern block-based design. This gives documents
2424

2525
## Community
2626

27-
BlockNote is currently in early beta. We'd love your feedback! If you have questions, need help, or want to contribute reach out to the community on [Discord](https://discord.gg/aDQxXezfNj) and [GitHub](https://github.com/yousefed/blocknote).
27+
BlockNote is currently in early beta. We'd love your feedback! If you have questions, need help, or want to contribute reach out to the community on [Discord](https://discord.gg/Qc2QTTH5dF) and [GitHub](https://github.com/yousefed/blocknote).
2828

2929
## Next: Set up BlockNote
3030

@@ -42,8 +42,8 @@ export default function App() {
4242
const editor: BlockNoteEditor | null = useBlockNote({});
4343

4444
// Renders the editor instance using a React component.
45-
return <BlockNoteView editor={editor}/>;
45+
return <BlockNoteView editor={editor} />;
4646
}
4747
```
4848

49-
:::
49+
:::

0 commit comments

Comments
 (0)