Skip to content

Commit a48f5aa

Browse files
authored
chore: Update youtube video embed
1 parent 26d5441 commit a48f5aa

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

docs/concepts/conversations.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,6 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# Conversations
99

10-
<div style={{ display: "flex", justifyContent: "center", marginTop: 16 }}>
11-
<iframe
12-
width="560"
13-
height="315"
14-
src="https://www.youtube.com/embed/nRJ9lGMrV8g"
15-
title="React ChatBotify Conversation Tutorial"
16-
frameBorder="0"
17-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
18-
allowFullScreen
19-
/>
20-
</div>
21-
2210
Conversations refer to the interactions between the bot and the user. Here's how a basic conversation may look like:
2311

2412
```jsx
@@ -38,6 +26,17 @@ const flow = {
3826

3927
Check out the [**YouTube Tutorial**](https://www.youtube.com/watch?v=nRJ9lGMrV8g) explaining the conversation flow concept through stronger visuals and animations.
4028

29+
<div style={{ display: "flex", justifyContent: "center", marginTop: 16 }}>
30+
<iframe
31+
style={{width: "100%", maxWidth: "1080px", aspectRatio: "16/9"}}
32+
src="https://www.youtube.com/embed/nRJ9lGMrV8g"
33+
title="React ChatBotify Conversation Flow Concept"
34+
frameBorder="0"
35+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
36+
allowFullScreen
37+
/>
38+
</div>
39+
4140
:::
4241

4342
In a conversation, there are 4 important properties to take note of and they are the **Flow** (conversation flow), **Block** (conversation block), **Attributes** and **Params**. Below,

0 commit comments

Comments
 (0)