Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ sidebar_position: 1

Welcome to **Chatbot Flow Editor** - a visual development tool for designing chatbot conversation flows. This tool helps you create, test, and export chatbot flows as JSON for integration with any chatbot framework.

## Introduction Video

<iframe width="560" height="315" src="https://www.youtube.com/embed/4wV240EaIPA?si=inZ6wGqkYxVzGsEC" title="Introduction to Chatbot Flow Editor" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen style={{borderRadius: '8px'}}></iframe>

Watch this video to get a quick overview of how to use the Chatbot Flow Editor.

## What is Chatbot Flow Editor?

Chatbot Flow Editor is a **GUI design tool**, not a complete chatbot solution. It provides:
Expand Down
31 changes: 31 additions & 0 deletions docs/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,37 @@ export default function Home() {
</div>
</section>

{/* Video Tutorial Section */}
<section className={styles.videoSection}>
<div className="container">
<div className="text--center margin-bottom--xl">
<Heading as="h2" className={styles.sectionTitle}>
See It In Action
</Heading>
<p className={styles.sectionSubtitle}>
Watch this introduction to understand how Chatbot Flow Editor works
</p>
</div>
<div className="row">
<div className="col col--8 col--offset-2">
<div className={styles.videoContainer}>
<iframe
width="100%"
height="400"
src="https://www.youtube.com/embed/4wV240EaIPA?si=inZ6wGqkYxVzGsEC"
title="Introduction to Chatbot Flow Editor"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerPolicy="strict-origin-when-cross-origin"
allowFullScreen
style={{ borderRadius: '8px' }}
/>
</div>
</div>
</div>
</div>
</section>

{/* JSON Export Section */}
<section className={styles.useCasesSection}>
<div className="container">
Expand Down