This is an automated email from the ASF dual-hosted git repository.
piotr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git
The following commit(s) were added to refs/heads/main by this push:
new ca58ff7e Fix navbars
ca58ff7e is described below
commit ca58ff7e6a0044af2047d7a90e111368cdc10bf9
Author: spetz <[email protected]>
AuthorDate: Tue Feb 10 09:58:49 2026 +0100
Fix navbars
---
.../{getting_started.mdx => getting-started.mdx} | 0
content/docs/introduction/meta.json | 2 +-
.../docs/sdk/rust/{high_level_sdk.mdx => high-level-sdk.mdx} | 0
content/docs/sdk/rust/meta.json | 5 ++++-
.../docs/sdk/rust/{stream_builder.mdx => stream-builder.mdx} | 0
src/lib/layout.shared.tsx | 12 +++++++++++-
6 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/content/docs/introduction/getting_started.mdx
b/content/docs/introduction/getting-started.mdx
similarity index 100%
rename from content/docs/introduction/getting_started.mdx
rename to content/docs/introduction/getting-started.mdx
diff --git a/content/docs/introduction/meta.json
b/content/docs/introduction/meta.json
index 951b8c2e..60897d58 100644
--- a/content/docs/introduction/meta.json
+++ b/content/docs/introduction/meta.json
@@ -1,4 +1,4 @@
{
"title": "Introduction",
- "pages": ["about", "architecture", "getting_started"]
+ "pages": ["about", "architecture", "getting-started"]
}
diff --git a/content/docs/sdk/rust/high_level_sdk.mdx
b/content/docs/sdk/rust/high-level-sdk.mdx
similarity index 100%
rename from content/docs/sdk/rust/high_level_sdk.mdx
rename to content/docs/sdk/rust/high-level-sdk.mdx
diff --git a/content/docs/sdk/rust/meta.json b/content/docs/sdk/rust/meta.json
index f4b1110d..afc14231 100644
--- a/content/docs/sdk/rust/meta.json
+++ b/content/docs/sdk/rust/meta.json
@@ -1 +1,4 @@
-{"title": "Rust", "pages": ["intro", "examples", "high_level_sdk",
"stream_builder"]}
+{
+ "title": "Rust",
+ "pages": ["intro", "examples", "high-level-sdk", "stream-builder"]
+}
diff --git a/content/docs/sdk/rust/stream_builder.mdx
b/content/docs/sdk/rust/stream-builder.mdx
similarity index 100%
rename from content/docs/sdk/rust/stream_builder.mdx
rename to content/docs/sdk/rust/stream-builder.mdx
diff --git a/src/lib/layout.shared.tsx b/src/lib/layout.shared.tsx
index 855179cd..351ae7f8 100644
--- a/src/lib/layout.shared.tsx
+++ b/src/lib/layout.shared.tsx
@@ -68,6 +68,16 @@ export function docsOptions(): BaseLayoutProps {
nav: {
title: <Logo className="h-9 w-auto md:h-11" />,
},
- links: [],
+ links: [
+ { text: "Home", url: "/" },
+ { text: "Blogs", url: "/blogs" },
+ { text: "Downloads", url: "/downloads" },
+ {
+ type: "custom",
+ on: "nav",
+ secondary: true,
+ children: <GitHubStars />,
+ },
+ ],
};
}