This is an automated email from the ASF dual-hosted git repository. leonardcs pushed a commit to branch feature/footer in repository https://gitbox.apache.org/repos/asf/incubator-baremaps-site.git
commit 730b847a4141ecc7160bfcd34f6b60e64b8dc20b Author: Leonard <[email protected]> AuthorDate: Fri Jul 7 11:12:31 2023 +0200 Add incubator disclamer --- theme.config.tsx | 40 +++++++++++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/theme.config.tsx b/theme.config.tsx index df6c840..8d0075f 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -22,18 +22,36 @@ const config: DocsThemeConfig = { 'https://github.com/apache/incubator-baremaps-site/blob/main/', footer: { text: ( - <span> - Copyright © {new Date().getFullYear()} Apache Software Foundation, - Licensed under the{' '} - <a - href="https://www.apache.org/licenses/LICENSE-2.0" - target="_blank" - style={{ textDecoration: 'underline' }} + <div> + <p + style={{ + borderBottom: 'solid 1px gray', + paddingBottom: '1rem', + marginBottom: '1rem' + }} > - Apache License, Version 2.0 - </a> - . - </span> + Apache Baremaps 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. + </p> + <span> + Copyright © {new Date().getFullYear()} Apache Software Foundation, + Licensed under the{' '} + <a + href="https://www.apache.org/licenses/LICENSE-2.0" + target="_blank" + style={{ textDecoration: 'underline' }} + > + Apache License, Version 2.0 + </a> + . + </span> + </div> ) }, sidebar: {
