diff --git a/apps/docs/contribute/guides/create-block.mdx b/apps/docs/contribute/guides/create-block.mdx
index 9eac59f08..187389dac 100644
--- a/apps/docs/contribute/guides/create-block.mdx
+++ b/apps/docs/contribute/guides/create-block.mdx
@@ -3,7 +3,7 @@ title: Create a new block
icon: screwdriver-wrench
---
-import { LoomVideo } from '/snippets/loom-video.mdx'
+import { YoutubeVideo } from '/snippets/youtube-video.mdx'
+
+
+
-
-
-### The creation of the Telegram block
-
-
+
+
+
+
Make sure to join our [Discord community](https://typebot.io/discord) to participate to these weekly office hours.
diff --git a/apps/docs/editor/blocks/integrations/nocodb.mdx b/apps/docs/editor/blocks/integrations/nocodb.mdx
index 2989b8edb..fede5bdb2 100644
--- a/apps/docs/editor/blocks/integrations/nocodb.mdx
+++ b/apps/docs/editor/blocks/integrations/nocodb.mdx
@@ -2,8 +2,12 @@
title: NocoDB
---
+import { YoutubeVideo } from '/snippets/youtube-video.mdx'
+
With the NocoDB block, you can create, update or get data from your NocoDB tables.
+
+
## How to find my `Table ID`?
To find your `Table ID`, you need to go to your NocoDB dashboard and click on the 3 dots button next to your table name.
diff --git a/packages/forge/blocks/nocodb/index.ts b/packages/forge/blocks/nocodb/index.ts
index 1d8428817..b01100c51 100644
--- a/packages/forge/blocks/nocodb/index.ts
+++ b/packages/forge/blocks/nocodb/index.ts
@@ -13,4 +13,8 @@ export const nocodbBlock = createBlock({
LightLogo: NocodbLogo,
auth,
actions: [searchRecords, createRecord, updateExistingRecord],
+ onboarding: {
+ youtubeId: 'ViKETDQ8Sfg',
+ deployedAt: new Date('2023-06-20'),
+ },
})