From d99193d1c4de6a12e317e5a51140639f583440bd Mon Sep 17 00:00:00 2001 From: Fu Cheng Date: Tue, 16 Apr 2024 07:38:52 +0800 Subject: [PATCH] doc: rename native-image to build-deploy --- website/docs/build-deploy/intro.md | 1 + website/docs/native-image/intro.md | 1 - website/docusaurus.config.ts | 4 ++-- website/sidebars.ts | 2 +- website/src/components/HomepageFeatures/index.tsx | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 website/docs/build-deploy/intro.md delete mode 100644 website/docs/native-image/intro.md diff --git a/website/docs/build-deploy/intro.md b/website/docs/build-deploy/intro.md new file mode 100644 index 0000000..45e341d --- /dev/null +++ b/website/docs/build-deploy/intro.md @@ -0,0 +1 @@ +# Build & Deploy diff --git a/website/docs/native-image/intro.md b/website/docs/native-image/intro.md deleted file mode 100644 index fc43d58..0000000 --- a/website/docs/native-image/intro.md +++ /dev/null @@ -1 +0,0 @@ -# Native Image diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index 7151cf6..2fc5677 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -93,9 +93,9 @@ const config: Config = { }, { type: "docSidebar", - sidebarId: "native-image", + sidebarId: "build-deploy", position: "left", - label: "Native Image", + label: "Build & Deploy", }, { to: "/blog", label: "Blog", position: "left" }, { diff --git a/website/sidebars.ts b/website/sidebars.ts index ae6098a..8c9a488 100644 --- a/website/sidebars.ts +++ b/website/sidebars.ts @@ -6,7 +6,7 @@ const sidebars: SidebarsConfig = { memory: ["memory/intro"], tools: ["tools/intro"], observation: ["observation/intro"], - "native-image": ["native-image/intro"], + "build-deploy": ["build-deploy/intro"], }; export default sidebars; diff --git a/website/src/components/HomepageFeatures/index.tsx b/website/src/components/HomepageFeatures/index.tsx index 0f6ce37..cbabb8f 100644 --- a/website/src/components/HomepageFeatures/index.tsx +++ b/website/src/components/HomepageFeatures/index.tsx @@ -51,10 +51,10 @@ const FeatureList: FeatureItem[] = [ description: <>Observation support, tracing and metrics, }, { - title: "Native Image", + title: "Build & Deploy", image: , - link: "/docs/native-image/intro", - description: <>GraalVM Native Image, + link: "/docs/build-deploy/intro", + description: <>Build & Deploy agents, }, ];