aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-12-18 04:20:24 +0000
committerMohamed Bassem <me@mbassem.com>2025-12-18 04:20:24 +0000
commit9021822a0533e5091927f9b8cfa42b208d448474 (patch)
treec8c9108999e366819c007f3a3b31547e488320b5
parent510174db9661815de3c9b3dd8deb00c9db582054 (diff)
downloadkarakeep-9021822a0533e5091927f9b8cfa42b208d448474.tar.zst
docs: Add icons beside category names
-rw-r--r--docs/docs/01-getting-started/_category_.json2
-rw-r--r--docs/docs/02-installation/_category_.json4
-rw-r--r--docs/docs/03-configuration/_category_.json2
-rw-r--r--docs/docs/04-using-karakeep/_category_.json2
-rw-r--r--docs/docs/05-integrations/_category_.json2
-rw-r--r--docs/docs/06-administration/_category_.json2
-rw-r--r--docs/docs/07-community/_category_.json2
-rw-r--r--docs/docs/08-development/_category_.json4
-rw-r--r--docs/docs/api/_category_.json2
-rw-r--r--docs/docusaurus.config.ts2
-rw-r--r--docs/sidebars.ts2
11 files changed, 13 insertions, 13 deletions
diff --git a/docs/docs/01-getting-started/_category_.json b/docs/docs/01-getting-started/_category_.json
index 3562d433..4bfa738a 100644
--- a/docs/docs/01-getting-started/_category_.json
+++ b/docs/docs/01-getting-started/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Getting Started",
+ "label": "🚀 Getting Started",
"position": 1
}
diff --git a/docs/docs/02-installation/_category_.json b/docs/docs/02-installation/_category_.json
index 1778985f..d39d5f24 100644
--- a/docs/docs/02-installation/_category_.json
+++ b/docs/docs/02-installation/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Installation",
- "position": 3
+ "label": "📦 Installation",
+ "position": 3
}
diff --git a/docs/docs/03-configuration/_category_.json b/docs/docs/03-configuration/_category_.json
index 0aea1748..ae9f593e 100644
--- a/docs/docs/03-configuration/_category_.json
+++ b/docs/docs/03-configuration/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Configuration",
+ "label": "⚙️ Configuration",
"position": 4
}
diff --git a/docs/docs/04-using-karakeep/_category_.json b/docs/docs/04-using-karakeep/_category_.json
index b0784ea6..95ef28ea 100644
--- a/docs/docs/04-using-karakeep/_category_.json
+++ b/docs/docs/04-using-karakeep/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Using Karakeep",
+ "label": "📖 Using Karakeep",
"position": 2
}
diff --git a/docs/docs/05-integrations/_category_.json b/docs/docs/05-integrations/_category_.json
index c2495ffd..e526841b 100644
--- a/docs/docs/05-integrations/_category_.json
+++ b/docs/docs/05-integrations/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Integrations",
+ "label": "🔌 Integrations",
"position": 5
}
diff --git a/docs/docs/06-administration/_category_.json b/docs/docs/06-administration/_category_.json
index 8998ac56..9847810a 100644
--- a/docs/docs/06-administration/_category_.json
+++ b/docs/docs/06-administration/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Administration",
+ "label": "🛠️ Administration",
"position": 6
}
diff --git a/docs/docs/07-community/_category_.json b/docs/docs/07-community/_category_.json
index 6fe06d4a..265fd50d 100644
--- a/docs/docs/07-community/_category_.json
+++ b/docs/docs/07-community/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Community",
+ "label": "👥 Community",
"position": 7
}
diff --git a/docs/docs/08-development/_category_.json b/docs/docs/08-development/_category_.json
index 9ab891bc..5cfb6b1d 100644
--- a/docs/docs/08-development/_category_.json
+++ b/docs/docs/08-development/_category_.json
@@ -1,4 +1,4 @@
{
- "label": "Development",
- "position": 8
+ "label": "💻 Development",
+ "position": 8
}
diff --git a/docs/docs/api/_category_.json b/docs/docs/api/_category_.json
index 695d9dbe..b493787e 100644
--- a/docs/docs/api/_category_.json
+++ b/docs/docs/api/_category_.json
@@ -1 +1 @@
-{ "label": "API", "position": 9 }
+{ "label": "🔗 API", "position": 9 }
diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts
index 1ba393d1..34a99bb3 100644
--- a/docs/docusaurus.config.ts
+++ b/docs/docusaurus.config.ts
@@ -42,7 +42,7 @@ const config: Config = {
}) => {
const sidebarItems = await defaultSidebarItemsGenerator(args);
return sidebarItems.filter(
- (item) => !(item.type == "category" && item.label === "API"),
+ (item) => !(item.type == "category" && item.label === "🔗 API"),
);
},
editUrl: "https://github.com/karakeep-app/karakeep/tree/main/docs/",
diff --git a/docs/sidebars.ts b/docs/sidebars.ts
index fa8c07f1..67337c10 100644
--- a/docs/sidebars.ts
+++ b/docs/sidebars.ts
@@ -6,7 +6,7 @@ const sidebars: SidebarsConfig = {
sidebar: [
{ type: "autogenerated", dirName: "." },
{
- API: openapiSidebar,
+ "🔗 API": openapiSidebar,
},
],
};