From 731ea0c9ea1a16cd9aedd06be267bb8a583d69e1 Mon Sep 17 00:00:00 2001 From: liukaiming-alipay Date: Fri, 17 Oct 2025 10:57:24 +0800 Subject: [PATCH 1/3] feat: update footer --- docusaurus.config.ts | 51 ++++++++--------------------------------- static/img/asf_logo.svg | 1 + 2 files changed, 10 insertions(+), 42 deletions(-) create mode 100644 static/img/asf_logo.svg diff --git a/docusaurus.config.ts b/docusaurus.config.ts index dac221e77..c95e87af2 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -185,48 +185,15 @@ const config: Config = { }, footer: { style: 'dark', - links: [ - { - title: 'Docs', - items: [ - { - label: 'Quick Start', - to: 'docs/quick_start/quick_start', - }, - { - label: 'Deployment', - to: 'docs/deploy/install_guide', - }, - ], - }, - { - title: 'Community', - items: [ - { - label: 'Contribute', - to: 'community/how_to_contribute', - }, - { - label: 'Realease', - to: 'community/how_to_release', - } - ], - }, - { - title: 'More', - items: [ - { - label: 'TuGraph', - href: 'https://tugraph.tech', - }, - { - label: 'GitHub', - href: 'https://github.com/apache/geaflow', - }, - ], - }, - ], - // copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, + logo: { + width: 200, + src: "img/asf_logo.svg", + href: "https://incubator.apache.org/", + alt: "Apache Incubator logo" + }, + copyright: `

Apache Fluss is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

+

Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0.

+

Apache, the names of Apache projects, and the feather logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. All other marks mentioned may be trademarks or registered trademarks of their respective owners.

`, }, } satisfies Preset.ThemeConfig, headTags: [ diff --git a/static/img/asf_logo.svg b/static/img/asf_logo.svg new file mode 100644 index 000000000..1b4c36433 --- /dev/null +++ b/static/img/asf_logo.svg @@ -0,0 +1 @@ + \ No newline at end of file From 3249c5896fe0bdd1c5c4a2cc4a628aedcff62968 Mon Sep 17 00:00:00 2001 From: liukaiming-alipay Date: Fri, 17 Oct 2025 11:05:32 +0800 Subject: [PATCH 2/3] fix: name --- docusaurus.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index c95e87af2..5517c857c 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -191,7 +191,7 @@ const config: Config = { href: "https://incubator.apache.org/", alt: "Apache Incubator logo" }, - copyright: `

Apache Fluss is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

+ copyright: `

Apache GeaFlow is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0.

Apache, the names of Apache projects, and the feather logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. All other marks mentioned may be trademarks or registered trademarks of their respective owners.

`, }, From 8fa372279c3339ba4c23848b36ced9b1109be39a Mon Sep 17 00:00:00 2001 From: liukaiming-alipay Date: Fri, 17 Oct 2025 11:10:15 +0800 Subject: [PATCH 3/3] fix: copyright --- docusaurus.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 5517c857c..de0d7f31d 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -191,7 +191,7 @@ const config: Config = { href: "https://incubator.apache.org/", alt: "Apache Incubator logo" }, - copyright: `

Apache GeaFlow is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

+ copyright: `

Apache Geaflow is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0.

Apache, the names of Apache projects, and the feather logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. All other marks mentioned may be trademarks or registered trademarks of their respective owners.

`, },