This is an automated email from the ASF dual-hosted git repository.

guoqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git


The following commit(s) were added to refs/heads/master by this push:
     new cbfa35ac6e0 feat: add milestones (#1604)
cbfa35ac6e0 is described below

commit cbfa35ac6e038a87e4531d6b14363b2d71c8eb1a
Author: litesun <[email protected]>
AuthorDate: Mon Jun 5 10:35:01 2023 +0800

    feat: add milestones (#1604)
---
 blog/src/theme/Footer/index.tsx    |  5 +++++
 config/navbar.js                   |  5 +++++
 doc/src/theme/Footer/index.tsx     |  5 +++++
 website/src/theme/Footer/index.tsx | 35 ++++++++++++++++++++---------------
 4 files changed, 35 insertions(+), 15 deletions(-)

diff --git a/blog/src/theme/Footer/index.tsx b/blog/src/theme/Footer/index.tsx
index 519bfa5b9c9..60b7e37d15a 100644
--- a/blog/src/theme/Footer/index.tsx
+++ b/blog/src/theme/Footer/index.tsx
@@ -92,6 +92,11 @@ const footer = {
           to: '/plugins',
           target: '_parent',
         },
+        {
+          label: 'Roadmap',
+          to: 'https://github.com/apache/apisix/milestones',
+          target: '_parent',
+        },
       ],
     },
   ],
diff --git a/config/navbar.js b/config/navbar.js
index b77a47346cf..a308cab1bab 100644
--- a/config/navbar.js
+++ b/config/navbar.js
@@ -106,6 +106,11 @@ module.exports = [
         label: 'Events',
         target: '_parent',
       },
+      {
+        to: 'https://github.com/apache/apisix/milestones',
+        label: 'Roadmap',
+        target: '_parent',
+      },
     ],
   },
   {
diff --git a/doc/src/theme/Footer/index.tsx b/doc/src/theme/Footer/index.tsx
index 519bfa5b9c9..60b7e37d15a 100644
--- a/doc/src/theme/Footer/index.tsx
+++ b/doc/src/theme/Footer/index.tsx
@@ -92,6 +92,11 @@ const footer = {
           to: '/plugins',
           target: '_parent',
         },
+        {
+          label: 'Roadmap',
+          to: 'https://github.com/apache/apisix/milestones',
+          target: '_parent',
+        },
       ],
     },
   ],
diff --git a/website/src/theme/Footer/index.tsx 
b/website/src/theme/Footer/index.tsx
index 821ff961a42..8efe20814f3 100644
--- a/website/src/theme/Footer/index.tsx
+++ b/website/src/theme/Footer/index.tsx
@@ -89,6 +89,11 @@ const footer = {
           to: '/plugins',
           target: '_parent',
         },
+        {
+          label: 'Roadmap',
+          to: 'https://github.com/apache/apisix/milestones',
+          target: '_parent',
+        },
       ],
     },
   ],
@@ -99,7 +104,7 @@ const footer = {
   },
 
   copyright:
-        `Copyright © 2019-${new Date().getFullYear()} The Apache Software 
Foundation. Apache APISIX, APISIX®, Apache, the Apache feather logo, and the 
Apache APISIX project logo are either registered trademarks or trademarks of 
the Apache Software Foundation.`,
+    `Copyright © 2019-${new Date().getFullYear()} The Apache Software 
Foundation. Apache APISIX, APISIX®, Apache, the Apache feather logo, and the 
Apache APISIX project logo are either registered trademarks or trademarks of 
the Apache Software Foundation.`,
 };
 
 const FooterLink = ({
@@ -133,20 +138,20 @@ const Footer: FC = () => {
   return (
     <footer className={style.container}>
       {links && links.length > 0 && (
-      <div className={style.linksRow}>
-        {links.map(({ title, items }) => (
-          <div key={title} className={style.linksCol}>
-            <div>{title}</div>
-            <ul>
-              {items.map((v) => (
-                <li key={v.to} className="footer__item">
-                  <FooterLink {...v} />
-                </li>
-              ))}
-            </ul>
-          </div>
-        ))}
-      </div>
+        <div className={style.linksRow}>
+          {links.map(({ title, items }) => (
+            <div key={title} className={style.linksCol}>
+              <div>{title}</div>
+              <ul>
+                {items.map((v) => (
+                  <li key={v.to} className="footer__item">
+                    <FooterLink {...v} />
+                  </li>
+                ))}
+              </ul>
+            </div>
+          ))}
+        </div>
       )}
       <div className={style.copyright}>
         <Link href={logo.href}>

Reply via email to