feat: added desc (#73)
* feat: added desc
* feat: added tagline2
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 @@
<h2 className="projectTitle">
{props.title}
<small>{props.tagline}</small>
+ <small>{props.tagline2}</small>
</h2>
);
@@ -62,9 +63,10 @@
<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 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",