diff --git a/content/blog/Supercharge-Your-Markdown-Blog-with-AI.md b/content/blog/Supercharge-Your-Markdown-Blog-with-AI.md
new file mode 100644
index 000000000..df61a8f12
--- /dev/null
+++ b/content/blog/Supercharge-Your-Markdown-Blog-with-AI.md
@@ -0,0 +1,43 @@
+---
+title: Markdown Bot - An AI friend who improves your content
+date: '2023-07-14T04:00:00.000Z'
+last_edited: '2023-07-14T04:00:00.000Z'
+author: Logan Anderson
+---
+
+With [TinaCMS](https://tina.io), all your content changes are committed directly to Git. This enables your team to create a variety of workflows for reviewing and merging content updates. By leaning on GitHub, you can integrate CI/CD into your content workflow.
+
+To illustrate the potential of this combination, we're excited to introduce **Markdown Bot**, an AI friend who improves your content by making suggestions to your Pull Requests.
+
+
+
+> Want to skip the reading and jump straight to the code? [Check out the open source repo](https://github.com/tinacms/markdown-bot).
+
+## A Useful Aid, Not a Replacement
+
+AI can be a valuable tool for assisting with writing and editing content. We've designed this bot not to replace content editors, but rather to augment their capabilities. The bot offers content suggestions directly in your pull requests. If you find the suggestions helpful, you can commit them with a click. If not, they're just as easily dismissed.
+
+![AI Suggestion in Github](https://res.cloudinary.com/forestry-demo/image/upload/v1689957451/blog-media/markdown-bot/Screenshot_2023-07-21_at_12.36.48_PM_ztpdes.png "AI Suggestion in Github")
+
+## Markdown Bot Works On Your PRs
+
+There are many AI writing tools out there but if you use them with markdown content it often involved copying and pasting from AI outputs. We wanted something that could interact with our Content in GitHub. That's why we developed a GitHub bot that allows us to receive these suggestions right within a GitHub pull request.
+
+## Working with the GitHub Bot
+
+After you've integrated the bot into your repository, you can command it to make suggestions by commenting `ai fix: `. A custom prompt can be added by using `prompt: ` underneath. The bot will then offer commit suggestions in the form of a pull request review.
+
+To get started [check out the open source repo](https://github.com/tinacms/markdown-bot "AI Content Github repo").
+
+## Looking Ahead: AI and Git-based Content
+
+Our GitHub bot works hand in hand with TinaCMS to enhance the content creation process. No longer do you need to manually copy and paste suggestions. The bot brings suggestions right to your pull requests for a smooth, efficient experience.
+
+We can envision some impressive custom workflows being built with AI and Git-based content. For instance, you could build off of this bot to:
+
+* Trigger the AI bot with custom events, such as opening a PR.
+* Utilize analytics to suggest recommendations based on your top/bottom performing pages.
+* Integrate this bot with your feedback widget, to open PRs based on user feedback.
+* Catch insensitive, inconsiderate writing with tools like [alex](https://github.com/get-alex/alex)
+
+These are just a few of the many possibilities we see for integrating AI with Git-based content. We're excited about the potential here and look forward to seeing the creative workflows that the community will build.
diff --git a/content/docs/contextual-editing/overview.md b/content/docs/contextual-editing/overview.md
index 7c0edb6fd..3b9265f0f 100644
--- a/content/docs/contextual-editing/overview.md
+++ b/content/docs/contextual-editing/overview.md
@@ -16,3 +16,13 @@ Tina also allows for "Visual Editing" so that editors can see their pages being
## Adding contextual-editing to a page
To add visual editing to a page, you'll need to hydrate the pages data. In React, this is done by [using the `useTina`](/docs/contextual-editing/react) hook. We are currently working on adding support for other frameworks such as [vue](/docs/contextual-editing/vue).
+
+## Video Tutorial
+
+For those who prefer to learn from video, you can check out a snippet on Visual Editing from our ["TinaCMS Deep Dive"](https://www.youtube.com/watch?v=PcgnJDILv4w&list=PLPar4H9PHKVqoCwZy79PHr8-W_vA3lAOB&pp=iAQB) series.
+
+
+
+
diff --git a/content/docs/editing/blocks.md b/content/docs/editing/blocks.md
index c5d31fe6a..11bfb6d14 100644
--- a/content/docs/editing/blocks.md
+++ b/content/docs/editing/blocks.md
@@ -333,5 +333,12 @@ const featureBlock = {
}
```
-
-
+## Video Tutorial
+
+For those who prefer to learn from video, you can check out a snippet on "Setting Up Blocks" from our ["TinaCMS Deep Dive"](https://www.youtube.com/watch?v=PcgnJDILv4w&list=PLPar4H9PHKVqoCwZy79PHr8-W_vA3lAOB&pp=iAQB) series.
+
+
+
+
diff --git a/content/docs/extending-tina/custom-field-components.md b/content/docs/extending-tina/custom-field-components.md
index 78e65df43..b18267555 100644
--- a/content/docs/extending-tina/custom-field-components.md
+++ b/content/docs/extending-tina/custom-field-components.md
@@ -107,3 +107,13 @@ For example, if you take a look at the color field plugin's definition, it takes
},
// ...
```
+
+## Video Tutorial
+
+For those who prefer to learn from video, you can check out a snippet on "Customizing Components" from our ["TinaCMS Deep Dive"](https://www.youtube.com/watch?v=PcgnJDILv4w&list=PLPar4H9PHKVqoCwZy79PHr8-W_vA3lAOB&pp=iAQB) series.
+
+
+
+
diff --git a/content/docs/extending-tina/customize-list-ui.md b/content/docs/extending-tina/customize-list-ui.md
index 218afc466..4f9a01fb2 100644
--- a/content/docs/extending-tina/customize-list-ui.md
+++ b/content/docs/extending-tina/customize-list-ui.md
@@ -85,3 +85,13 @@ For example:
which will render as:
![List UI with label and style prop](https://res.cloudinary.com/forestry-demo/image/upload/v1649941182/tina-io/docs/extending-tina/Extending_Tina_Style_List_Props.png)
+
+## Video Tutorial
+
+For those who prefer to learn from video, you can check out a snippet on "Customizing List Items" from our ["TinaCMS Deep Dive"](https://www.youtube.com/watch?v=PcgnJDILv4w&list=PLPar4H9PHKVqoCwZy79PHr8-W_vA3lAOB&pp=iAQB) series.
+
+
+
+
diff --git a/content/docs/features/data-fetching.md b/content/docs/features/data-fetching.md
index 685394820..618da0e0e 100644
--- a/content/docs/features/data-fetching.md
+++ b/content/docs/features/data-fetching.md
@@ -64,6 +64,16 @@ When developing locally, it's often beneficial to talk to the content on your lo
> If you setup Tina via `@tinacms/cli init`, or used one of our starters, this should be setup by default. (Read about the CLI [here](/docs/graphql/cli/.)
+## Video Tutorial
+
+For those who prefer to learn from video, you can check out a snippet on "Data Fetching" from our ["TinaCMS Deep Dive"](https://www.youtube.com/watch?v=PcgnJDILv4w&list=PLPar4H9PHKVqoCwZy79PHr8-W_vA3lAOB&pp=iAQB) series.
+
+
+
+
+
## Summary
- Tina provides a GraphQL API for querying your git-based content.
diff --git a/content/docs/index.md b/content/docs/index.md
index 25d609004..804bbb282 100644
--- a/content/docs/index.md
+++ b/content/docs/index.md
@@ -1,13 +1,13 @@
---
title: Tina Docs
id: introduction
-last_edited: '2021-07-27T15:51:56.737Z'
+last_edited: '2023-07-18T15:51:56.737Z'
next: /docs/product-tour
---
## Introduction
-Tina is a Git-backed headless content management system that enables developers and content creators to collaborate seamlessly. With Tina, developers can create a custom visual editing experience that is perfectly tailored to their site.
+Tina is an open-source, Git-backed headless content management system (CMS) that empowers both developers and content creators to collaborate seamlessly on a single platform. Tina enables developers to craft a custom visual editing experience perfectly tailored to their website or application while supporting a broad range of content types such as Markdown, MDX, and JSON.