diff --git a/packages/docs-reanimated/docs/debugging/accurate-call-stacks.mdx b/packages/docs-reanimated/docs/debugging/accurate-call-stacks.mdx
index a268e5d7b6d..45490b59636 100644
--- a/packages/docs-reanimated/docs/debugging/accurate-call-stacks.mdx
+++ b/packages/docs-reanimated/docs/debugging/accurate-call-stacks.mdx
@@ -6,6 +6,10 @@ sidebar_position: 1
# Accurate Call Stacks
+import UnreleasedInfo from '../_shared/_unreleased_info.mdx';
+
+
+
When debugging Reanimated code, you may encounter error or warning call stacks that don't clearly indicate the root cause of the problem. These stacks can be misleading, as they often highlight code from Reanimated's internals rather than the misuse of the Reanimated API that is the source of the problem.
To address this, Reanimated provides a Metro configuration wrapper called `wrapWithReanimatedMetroConfig`. This wrapper automatically adjusts your Metro config to improve the accuracy of call stacks in warnings and errors generated by the Reanimated library.
diff --git a/packages/docs-reanimated/docs/debugging/logger-configuration.mdx b/packages/docs-reanimated/docs/debugging/logger-configuration.mdx
index d20ce87b605..8234dce99f4 100644
--- a/packages/docs-reanimated/docs/debugging/logger-configuration.mdx
+++ b/packages/docs-reanimated/docs/debugging/logger-configuration.mdx
@@ -6,6 +6,10 @@ sidebar_position: 2
# Logger configuration
+import UnreleasedInfo from '../_shared/_unreleased_info.mdx';
+
+
+
Reanimated shows warnings that indicate misuses of the library API, such as modifying the [shared value](/docs/fundamentals/glossary#shared-value) during component re-render. These logs can be configured to be more or less verbose.
The **default** logger configuration doesn't require any user setup and displays **all warnings and errors**. If you want to change this behavior, use the `configureReanimatedLogger` function.
diff --git a/packages/docs-reanimated/docs/fundamentals/getting-started.mdx b/packages/docs-reanimated/docs/fundamentals/getting-started.mdx
index a3601df99f0..5cdd34597c4 100644
--- a/packages/docs-reanimated/docs/fundamentals/getting-started.mdx
+++ b/packages/docs-reanimated/docs/fundamentals/getting-started.mdx
@@ -91,33 +91,7 @@ To learn more about the plugin head onto to [Reanimated babel plugin](/docs/fund
-### Step 3: Wrap metro config with reanimated wrapper (recommended)
-
-Wrap your existing Metro configuration in the `metro.config.js` file with the `wrapWithReanimatedMetroConfig` function.
-
-```js
-// metro.config.js
-const {
- wrapWithReanimatedMetroConfig,
-} = require('react-native-reanimated/metro-config');
-
-const config = {
- // Your existing Metro configuration options
-};
-
-module.exports = wrapWithReanimatedMetroConfig(config);
-```
-
-
-Why should I do this?
-
-Wrapping your Metro configuration with the Reanimated Metro config wrapper will result in displaying improved reanimated errors and warnings with more accurate call stacks. Thanks to this, identifying misuses of the Reanimated API will be much easier than before.
-
-To learn more about this feature, head onto to [Accurate Call Stacks](/docs/debugging/accurate-call-stacks).
-
-
-
-### Step 4: Clear Metro bundler cache (recommended)
+### Step 3: Clear Metro bundler cache (recommended)
diff --git a/packages/docs-reanimated/src/css/colors.css b/packages/docs-reanimated/src/css/colors.css
index 1942d1ca9b6..fa8c7ca0272 100644
--- a/packages/docs-reanimated/src/css/colors.css
+++ b/packages/docs-reanimated/src/css/colors.css
@@ -262,6 +262,9 @@
--swm-sidebar-label-text-experimental: var(--swm-navy-light-100);
--swm-sidebar-label-background-experimental: var(--swm-yellow-light-40);
+ --swm-sidebar-label-text-unreleased: var(--swm-navy-light-100);
+ --swm-sidebar-label-background-unreleased: var(--swm-blue-light-40);
+
/* Mobile sidebar versions */
--swm-sidebar-elements-version-text: var(--swm-navy-light-100);
--swm-sidebar-elements-version-inactive: var(--swm-navy-dark-40);
@@ -440,6 +443,9 @@
--swm-sidebar-label-text-experimental: var(--swm-off-white);
--swm-sidebar-label-background-experimental: var(--swm-yellow-dark-120);
+ --swm-sidebar-label-text-unreleased: var(--swm-off-white);
+ --swm-sidebar-label-background-unreleased: var(--swm-blue-dark-120);
+
/* Mobile sidebar versions */
--swm-sidebar-elements-version-text: var(--swm-navy-dark-20);
--swm-sidebar-elements-version-inactive: var(--swm-navy-dark-60);
diff --git a/packages/docs-reanimated/src/theme/DocSidebar/index.js b/packages/docs-reanimated/src/theme/DocSidebar/index.js
index 31f77533cc3..b49cba0314e 100644
--- a/packages/docs-reanimated/src/theme/DocSidebar/index.js
+++ b/packages/docs-reanimated/src/theme/DocSidebar/index.js
@@ -15,11 +15,13 @@ export default function DocSidebarWrapper(props) {
const newItems = ['animations/withClamp'];
const experimentalItems = ['shared-element-transitions/overview'];
+ const unreleasedItems = ['debugging/accurate-call-stacks', 'debugging/logger-configuration'];
return (