You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/09/15 06:11:47 UTC

[apisix-website] branch master updated: feat: added desc (#73)

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

juzhiyuan 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 fe9bd58  feat: added desc (#73)
fe9bd58 is described below

commit fe9bd58c07c4c23b180a531fc9bcf7b66e24bccd
Author: 琚致远 <ju...@apache.org>
AuthorDate: Tue Sep 15 14:11:41 2020 +0800

    feat: added desc (#73)
    
    * feat: added desc
    
    * feat: added tagline2
---
 docs/download.md          | 3 +++
 website/pages/en/index.js | 4 +++-
 website/siteConfig.js     | 3 ++-
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/docs/download.md b/docs/download.md
index 8fdeaf7..192b670 100644
--- a/docs/download.md
+++ b/docs/download.md
@@ -2,6 +2,9 @@
 id: downloads
 title: Downloads
 ---
+Apache APISIX is a dynamic, real-time, high-performance Cloud-Native API gateway, based on the Nginx library and etcd.
+
+Apache APISIX software provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.
 
 Use the links below to download the Apache APISIX™ from one of our mirrors.
 
diff --git a/website/pages/en/index.js b/website/pages/en/index.js
index 65f5a9b..fcb2c57 100644
--- a/website/pages/en/index.js
+++ b/website/pages/en/index.js
@@ -39,6 +39,7 @@ class HomeSplash extends React.Component {
       <h2 className="projectTitle">
         {props.title}
         <small>{props.tagline}</small>
+        <small>{props.tagline2}</small>
       </h2>
     );
 
@@ -62,9 +63,10 @@ class HomeSplash extends React.Component {
       <SplashContainer>
         {/* <Logo img_src={`${baseUrl}img/undraw_monitor.svg`} /> */}
         <div className="inner">
-          <ProjectTitle tagline={siteConfig.tagline} title={siteConfig.title} />
+          <ProjectTitle tagline={siteConfig.tagline} tagline2={siteConfig.tagline2} title={siteConfig.title} />
           <PromoSection>
             <Button href="https://github.com/apache/apisix" target="_blank">View on GitHub</Button>
+            <Button href="/docs/downloads" target="_blank">Downloads</Button>
           </PromoSection>
         </div>
       </SplashContainer>
diff --git a/website/siteConfig.js b/website/siteConfig.js
index 240128b..77c3dc3 100644
--- a/website/siteConfig.js
+++ b/website/siteConfig.js
@@ -29,7 +29,8 @@ const users = [
 
 const siteConfig = {
   title: "Apache APISIX™",
-  tagline: "The Cloud-Native API Gateway",
+  tagline: "Apache APISIX is a dynamic, real-time, high-performance Cloud-Native API gateway, based on the Nginx library and etcd.",
+  tagline2: "Apache APISIX software provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.",
   url: "https://apisix.apache.org/",
   baseUrl: "/",
   projectName: "apisix-website",