diff --git a/docs/core-concepts/issues/dedup.mdx b/docs/core-concepts/issues/dedup.mdx
new file mode 100644
index 0000000..d2a043f
--- /dev/null
+++ b/docs/core-concepts/issues/dedup.mdx
@@ -0,0 +1,44 @@
+---
+title: De-dup
+hide_title: true
+---
+
+import Tags from '@site/src/components/Tags';
+
+
+ 
Detect duplicate issues
+
+
+
+When similar issues clutter a workspace, they confuse team members and make it harder to track and manage project scope.  
+
+Our De-dup feature helps you catch and manage duplicate issues in Plane.
+
+## How De-dup works
+
+Plane flags duplicate issues both when creating a new one and when viewing an issue's details. 
+
+### Detect duplicates during issue creation
+
+When you create a new issue, Plane scans titles and descriptions for similar content and notifies you if it finds potential duplicates.
+
+
+
+You can click on the issues to check and decide if creating a new one is necessary or if updating an existing one makes more sense.
+
+### Mark or delete duplicate issues
+
+You can mark issues as duplicates or delete them in the issue detail view. 
+
+
+When you open an issue, Plane analyses and lists similar issues. You can select one or more of these issues and mark them duplicates. This will add a "Duplicate of" relation to connect them.
+
+
+
+:::tip 
+The De-dup feature is also active when creating or viewing issues in Intake. 
+:::
\ No newline at end of file
diff --git a/sidebars.ts b/sidebars.ts
index bb90f33..78853b7 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -77,7 +77,8 @@ const sidebars: SidebarsConfig = {
       label: 'Advanced project management',
       items: [
         'core-concepts/issues/issue-types',
-        'core-concepts/issues/time-tracking'
+        'core-concepts/issues/time-tracking',
+        'core-concepts/issues/dedup'
       ],
     },
     {
diff --git a/src/css/custom.css b/src/css/custom.css
index ee4135f..b031052 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -261,6 +261,21 @@ html[data-theme='dark'] .navbar--discord-link:before {
   padding: 0 15px 0 15px;
 }
 
+.business {
+  color: #111111;
+  border-radius: 4px;
+  border: 1px solid #D6D7D9;
+  background: linear-gradient(167.44deg, #C2C8E4 0%, #BFC4DF 67.25%, #FCFCFC 98.9%);
+  padding: 0 15px 0 15px;
+}
+
+html[data-theme='dark'] .business {
+  color: #F5F5F5;
+  border-radius: 4px;
+  border: 0.92px solid #646c90;
+  background: linear-gradient(164.95deg, #414669 0%, rgba(56, 60, 78, 0.12) 53.4%, rgba(172, 211, 255, 0.16) 100%);
+  padding: 0 15px 0 15px;
+}
 
 html[data-theme='dark'] .pro {
   color: #fff;