update: add quick-links plugin
diff --git a/docs/development/plugins/plugin.md b/docs/development/plugins/plugin.md
index 81ae4e8..224dd78 100644
--- a/docs/development/plugins/plugin.md
+++ b/docs/development/plugins/plugin.md
@@ -34,6 +34,7 @@
 Search | Backend Plugin | Support for using search engines to speed up the search for question answers.
 User Center | Backend Plugin | Using the third-party user system to manage users.
 Notification | Backend Plugin | The Notification plugin helps us to send messages to third-party notification systems.
+Sidebar | Backend Plugin | Add custom content on the sidebar navigation
 Route | Standard UI Plugin | Provides support for custom routing.
 Editor | Standard UI Plugin | Supports extending the markdown editor's toolbar.
 Captcha | Standard UI Plugin | Provides support for captcha.
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/plugins/plugin.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/plugins/plugin.md
index 24eb10d..8513658 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/plugins/plugin.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/plugins/plugin.md
@@ -76,13 +76,13 @@
       answercmd "github.com/apache/answer/cmd"
 
       // Import the plugins
-      _ "github.com/apache/answer/ui/src/plugins/my-plugin"
+      _ "github.com/apache/answer-plugins/my-plugin"
     )
     ```
 3. Use `go mod edit` to add the plugin to the `go.mod` file.
 
     ```shell
-    go mod edit -replace=github.com/apache/answer/ui/src/plugins/my-plugin=../ui/src/plugins/my-plugin
+    go mod edit -replace=github.com/apache/answer-plugins/my-plugin=../ui/src/plugins/my-plugin
     ```
 4. Update the dependencies.