diff --git a/docs/core-concepts/cycles.mdx b/docs/core-concepts/cycles.mdx
index 9cfe175..a7702f9 100644
--- a/docs/core-concepts/cycles.mdx
+++ b/docs/core-concepts/cycles.mdx
@@ -43,14 +43,7 @@ When a cycle’s due date has passed, it moves into the completed state. This re
You can modify the name, description, start and due dates of active and upcoming cycles at any time.
:::
-
- ## Transfer issues
-
-
+## Transfer issues
Once the due date of an active Cycle passes, it’s automatically marked as completed. After that, you can easily transfer any unfinished issues to an active or upcoming cycle, making it simple to move any leftover tasks to the next cycle.
diff --git a/docs/core-concepts/projects/overview.mdx b/docs/core-concepts/projects/overview.mdx
index 33df5b9..aaceae2 100644
--- a/docs/core-concepts/projects/overview.mdx
+++ b/docs/core-concepts/projects/overview.mdx
@@ -29,7 +29,7 @@ Click the **…** icon next to your project name on the sidebar and click **Sett
## Add and manage members
-To get others involved in your project, they first need to be part of your workspace. [Invite them](/core-concepts/workspaces/members#adding-members) to the workspace.
+To get others involved in your project, they first need to be part of your workspace. [Invite them](/core-concepts/workspaces/members#add-member) to the workspace.
Once they’re in the workspace, you can invite them to join the project and assign roles like **Admin**, **Member**, or **Guest**. You can always update their roles later if needed.
diff --git a/docs/performance/hyper-mode.mdx b/docs/performance/hyper-mode.mdx
new file mode 100644
index 0000000..fbee042
--- /dev/null
+++ b/docs/performance/hyper-mode.mdx
@@ -0,0 +1,52 @@
+---
+title: Hyper Mode
+---
+
+# Turbocharge speed and performance
+
+Hyper Mode is a feature in Plane designed to make your workspace faster and more responsive. By storing workspace data directly on your machine, Hyper Mode reduces the time it takes to load issues, modules, cycles, labels, members, and other workspace elements when using issue layouts.
+
+## Use Hyper Mode
+
+Hyper Mode is enabled by default. To manage it, click the **?** icon on the sidebar. This opens a menu where you can toggle **Hyper Mode** on or off as needed.
+
+
+
+## Important security considerations
+
+Logging out clears the locally stored data to protect your privacy.
+
+If you're working on a shared or public computer, take extra precautions by:
+
+- Disabling Hyper Mode or
+- Ensuring you log out when you're done to clear the local cache.
+
+## Under the hood
+
+When you enable Hyper Mode, Plane creates a local cache on your machine using a SQLite database powered by the Origin Private File System (OPFS). This allows us to keep a synchronized copy of your workspace data right in your browser, dramatically reducing the need for repeated server requests.
+
+## Data sync challenges
+
+Our sync mechanism is continuously improving, but you might occasionally encounter inconsistencies. Most sync issues can be resolved with a simple page reload. If that doesn't work, try these steps:
+
+### First-level troubleshooting
+
+1. Disable Hyper Mode.
+2. Wait 10 seconds.
+3. Re-enable Hyper Mode.
+4. Allow 10-30 seconds for data synchronization.
+
+### Advanced troubleshooting
+If the first method doesn't resolve your issue:
+
+1. Disable Hyper Mode.
+2. Completely quit your browser.
+3. Re-open Plane.
+4. Re-enable Hyper Mode.
+5. Wait for full data synchronization.
+
+:::tip
+You can continue using the app while sync happens in the background.
+:::
+
+If these steps don't resolve the issue, reach out to our support team for further assistance.
diff --git a/sidebars.ts b/sidebars.ts
index be36afd..8862376 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -160,6 +160,14 @@ const sidebars: SidebarsConfig = {
'devices/mobile',
],
},
+ {
+ type: 'category',
+ collapsed: false,
+ label: 'Performance',
+ items: [
+ 'performance/hyper-mode'
+ ],
+ },
{
type: 'link',
label: 'API Reference',
@@ -170,6 +178,11 @@ const sidebars: SidebarsConfig = {
label: 'Webhooks',
href: 'https://developers.plane.so/webhooks/intro-webhooks',
},
+ {
+ type: 'link',
+ label: 'Changelog',
+ href: 'https://plane.so/changelog',
+ }
],
};
export default sidebars;