diff --git a/docs/overview/introduction.md b/docs/overview/introduction.md
index f937ac67..4ae70f65 100644
--- a/docs/overview/introduction.md
+++ b/docs/overview/introduction.md
@@ -107,3 +107,5 @@ For more information, see [Review local changes](/code-editors).
- [Review local changes](/code-editors) guides you through installing and using a subset of CodeRabbit features directly from your code editor.
- [Why CodeRabbit?](/overview/why-coderabbit) dives further into the philosophies and technologies that drive CodeRabbit.
+
+- [Start Learning](/overview/learnings/) to dive into hands-on code reviews, practical examples, and lessons from real development workflows.
diff --git a/docs/overview/learnings.md b/docs/overview/learnings.md
new file mode 100644
index 00000000..8429b6fd
--- /dev/null
+++ b/docs/overview/learnings.md
@@ -0,0 +1,173 @@
+---
+id: learnings
+title: Learnings
+sidebar_label: Learnings
+sidebar_position: 3
+description: Insights and learnings captured from code reviews to enhance future development.
+---
+
+# Learnings
+
+At CodeRabbit, every code review isn't just about catching bugs — it's a chance to reflect, improve, and evolve how we write and understand code. This page collects key learnings, helpful resources, and community insights to help you get the most out of CodeRabbit.
+
+---
+
+## đŸ“º Featured Videos
+
+### 1. Why PR Summaries Matter
+
+Understanding the importance of clear, concise pull-request summaries and how they improve feedback loop quality.
+
+
+
+
+
+---
+
+### 2. PRs That AI Reviews Really Well
+
+See real examples where CodeRabbit delivers accurate and useful insights quickly.
+
+
+
+
+
+---
+
+### 3. Reviewing open-source: Cal.com
+
+A deep dive into reviewing a complex, real-world open-source project (Cal.com).
+
+
+
+
+
+---
+
+### 4. Getting Started with CodeRabbit
+
+Step-by-step walkthrough of installation, setup, and using CodeRabbit on your first PR.
+
+
+
+
+
+---
+
+### 5. Reviewing Buildkite’s PR
+
+Insights into how CodeRabbit evaluates CI-oriented codebases like Buildkite.
+
+
+
+
+
+---
+
+### 6. How the Cursor Plugin Works
+
+Explore how CodeRabbit integrates into Cursor for in-editor AI feedback.
+
+
+
+
+
+---
+
+### 7. Reviewing Code with AI — Vercel
+
+Real-world demo of CodeRabbit understanding and reviewing Vercel-specific code.
+
+
+
+
+
+---
+
+### 8. How We Train CodeRabbit
+
+An inside look at the training pipeline, model improvements, and data workflows.
+
+
+
+
+
+---
+
+### 9. Main AI Podcast: OSS, DevTools
+
+Conversation with engineers on open-source, developer tooling, and the future of AI in code.
+
+
+
+
+
+---
+
+### 10. Reviewing CodeRabbit’s Own Code
+
+A candid walkthrough of CodeRabbit’s internal codebase to show the tool reviewing itself.
+
+
+
+
+
+---
+
+### 11. How CodeRabbit Works (Architecture)
+
+Technical overview of our internal architecture and how the system components interact.
+
+
+
+
+
+---
+
+### 12. Learnings: Code Review Philosophy
+
+Philosophical dive into the core principles, best practices, and mindset behind our code-review approach.
+
+
+
+
+
+---
+
+## đŸ™Œ Final Thoughts
+
+Every interaction with CodeRabbit is an opportunity to learn. Whether you're debugging smarter, catching edge cases faster, or just coding more confidently — this is your space to reflect and grow.
+
+---
+
+## What's next
+
+- [Quickstart](/getting-started/quickstart/) lets you experience your first CodeRabbit code review first-hand.
+
+- [Review local changes](/code-editors) guides you through installing and using a subset of CodeRabbit features directly from your code editor.
+
+- [Why CodeRabbit?](/overview/why-coderabbit) dives further into the philosophies and technologies that drive CodeRabbit.
diff --git a/sidebars.ts b/sidebars.ts
index 5b42e112..31fbe7b1 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -32,7 +32,11 @@ const sidebars: SidebarsConfig = {
type: "category",
collapsed: true,
label: "Get started with CodeRabbit",
- items: ["overview/introduction", "getting-started/quickstart"],
+ items: [
+ "overview/introduction",
+ "overview/learnings",
+ "getting-started/quickstart",
+ ],
},
{
type: "category",