You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2021/10/28 11:44:22 UTC

[incubator-linkis-website] 09/47: ADD: 增加首页的home-description模块

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

peacewong pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/incubator-linkis-website.git

commit e1cfcdaa3eaf1b3abda8a162d9b524e732aece66
Author: lucaszhu <lu...@webank.com>
AuthorDate: Thu Sep 30 15:06:07 2021 +0800

    ADD: 增加首页的home-description模块
---
 src/pages/home.vue | 37 ++++++++++++++++++++++++++++---------
 1 file changed, 28 insertions(+), 9 deletions(-)

diff --git a/src/pages/home.vue b/src/pages/home.vue
index 8fb9032..7fb2bdf 100644
--- a/src/pages/home.vue
+++ b/src/pages/home.vue
@@ -12,15 +12,23 @@
     <div class="concept home-block">
       <div class="concept-item">
         <h3 class="concept-title">Before</h3>
-        <p class="concept-desc">Each upper application directly connects to and accesses various underlying engines in a tightly coupled way, which makes big data platform a complex network architecture.</p>
+        <p class="home-paragraph">Each upper application directly connects to and accesses various underlying engines in a tightly coupled way, which makes big data platform a complex network architecture.</p>
         <!-- <img src="" alt="before" class="concept-image"> -->
       </div>
       <div class="concept-item">
         <h3 class="concept-title">After</h3>
-        <p class="concept-desc">Build a common layer of "computation middleware" between the numerous upper-layer applications and the countless underlying engines to resolve these complex connection problems in a standardized reusable way</p>
+        <p class="home-paragraph">Build a common layer of "computation middleware" between the numerous upper-layer applications and the countless underlying engines to resolve these complex connection problems in a standardized reusable way</p>
         <!-- <img src="" alt="after" class="concept-image"> -->
       </div>
     </div>
+    <div class="description home-block">
+      <div class="description-content">
+        <h1 class="home-block-title">Description</h1>
+        <p class="home-paragraph">Linkis provides standardized interfaces (REST, JDBC, WebSocket etc.) to easily connect to various underlying engines (Spark, Presto, Flink, etc.), and acts as a proxy between the upper applications layer and underlying engines layer. </p>
+        <p class="home-paragraph">Linkis is able to facilitate the connectivity, governance and orchestration capabilities of different kind of engines like OLAP, OLTP (developing), Streaming, and handle all these "computation governance" affairs in a standardized reusable way.</p>
+      </div>
+      <!-- <img src="" alt="description" class="description-image"> -->
+    </div>
     <h1 class="home-block-title text-center">Core Features</h1>
     <div class="features home-block">
       <div class="feature-item">
@@ -78,7 +86,25 @@
     }
     .home-block{
       padding: 20px 0 88px;
+      .home-paragraph{
+        font-size: 18px;
+        color: #4A4A4A;
+        line-height: 26px;
+        font-weight: 400;
+        margin-bottom: 16px;
+      }
+    }
+    .description{
+      display: flex;
+      align-items: center;
+      .description-content{
+        flex: 1;
+      }
+      .description-image{
+        margin-left: 40px;
+      }
     }
+
     .concept{
       display: grid;
       grid-template-columns: repeat(2, 1fr);
@@ -93,13 +119,6 @@
           margin-bottom: 16px;
           color: @enhance-color;
         }
-        .concept-desc{
-          font-size: 18px;
-          color: #4A4A4A;
-          line-height: 26px;
-          font-weight: 400;
-          margin-bottom: 16px;
-        }
         .concept-image{
           width: 100%;
         }

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org