diff --git a/documentation/blog/2024-01-25-react-server-components.md b/documentation/blog/2024-10-07-react-server-components.md
similarity index 68%
rename from documentation/blog/2024-01-25-react-server-components.md
rename to documentation/blog/2024-10-07-react-server-components.md
index 7620f4e3448b..74891e6d483a 100644
--- a/documentation/blog/2024-01-25-react-server-components.md
+++ b/documentation/blog/2024-10-07-react-server-components.md
@@ -4,11 +4,11 @@ description: We will discuss what React server components are as well as how to
slug: react-server-components
authors: peter_osah
tags: [react]
-image: https://refine.ams3.cdn.digitaloceanspaces.com/blog/2023-07-09-react-server-components/social.png
+image: https://refine.ams3.cdn.digitaloceanspaces.com/blog/2023-07-09-react-server-components/social-3.png
hide_table_of_contents: false
---
-**_This article was last updated on January 25, 2024 to add new usecases and clear definition for React Server Components_**
+**_This article was last updated on October 07, 2024 to include sections on Hydration, Performance Benefits, and Error Handling for React Server Components._**
## Introduction
@@ -23,9 +23,11 @@ Steps we'll follow:
- [Differences between React server components and client components](#differences-between-react-server-components-and-client-components)
- [Differences between React server components and server-side rendering(SSR) in React](#differences-between-react-server-components-and-server-side-renderingssr-in-react)
- [Using server components in a React application](#using-server-components-in-a-react-application)
+- [Error Boundaries in React Server Components](#error-boundaries-in-react-server-components)
- [When to use React server components?](#when-to-use-react-server-components)
- [Using server components in a Next.js application](#using-server-components-in-a-nextjs-application)
- [Pros and Cons of React server components](#pros-and-cons-of-react-server-components)
+- [Bonus: Hydration and React Server Components](#bonus-hydration-and-react-server-components)
## What are React server components?
@@ -207,12 +209,12 @@ const PostEditor = ({ blogPost }) => {
return (