This is an automated email from the ASF dual-hosted git repository.
xxyu pushed a commit to branch doc5.0
in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/doc5.0 by this push:
new 8e80f9469d Update pictures for main pages
8e80f9469d is described below
commit 8e80f9469d7782777a9beb29059c332ce1584ff5
Author: XiaoxiangYu <[email protected]>
AuthorDate: Tue Nov 22 12:31:26 2022 +0800
Update pictures for main pages
---
website/docs/deployment/intro.md | 2 +-
website/docs/deployment/on-cloud/intro.md | 11 +++---
website/docs/quickstart/intro.md | 9 +++++
website/docusaurus.config.js | 32 ++++++++++-------
website/src/components/HomepageFeatures/index.js | 41 ++++++++++++----------
.../components/HomepageFeatures/styles.module.css | 4 +--
website/src/pages/index.js | 4 +--
website/static/img/main_page_01.svg | 23 ++++++++++++
website/static/img/main_page_02.svg | 22 ++++++++++++
website/static/img/main_page_03.svg | 19 ++++++++++
website/static/img/main_page_04.svg | 17 +++++++++
website/static/img/main_page_05.svg | 19 ++++++++++
12 files changed, 163 insertions(+), 40 deletions(-)
diff --git a/website/docs/deployment/intro.md b/website/docs/deployment/intro.md
index 5b40a92f23..625937eac6 100644
--- a/website/docs/deployment/intro.md
+++ b/website/docs/deployment/intro.md
@@ -14,4 +14,4 @@ last_update:
date: 08/17/2022
---
-Kylin 5.0 support deploy on Hadoop or K8S.
+Kylin 5.0 support deploy on Hadoop or K8S(WIP).
diff --git a/website/docs/deployment/on-cloud/intro.md
b/website/docs/deployment/on-cloud/intro.md
index 27ad17423e..416045f039 100644
--- a/website/docs/deployment/on-cloud/intro.md
+++ b/website/docs/deployment/on-cloud/intro.md
@@ -8,13 +8,14 @@ toc_max_heading_level: 6
pagination_prev: null
pagination_next: null
keywords:
- - kylin on k8s
- k8s
-draft: false
+draft: true
last_update:
date: 08/17/2022
---
-- K8S https://aws.amazon.com/eks/
-- RDBMS https://aws.amazon.com/rds/
-- Docker Image and K8s Template
+> This feature is working in process.
+
+- AWS EKS https://aws.amazon.com/eks/
+- AWS RDS https://aws.amazon.com/rds/
+- Docker Image and K8s Template Link
diff --git a/website/docs/quickstart/intro.md b/website/docs/quickstart/intro.md
index f5300110d6..1e21792954 100644
--- a/website/docs/quickstart/intro.md
+++ b/website/docs/quickstart/intro.md
@@ -23,3 +23,12 @@ Kylin has following key strengths:
- Unified Big Data Warehouse Architecture
- Seamless Integration with BI tools
- Comprehensive and Enterprise-ready Capabilities
+
+### Pull docker for learning
+
+If we want to learn what new features did Kylin 5 provided, and you only have
a laptop,
+we recommend you to pulling the docker image and check the [standalone image
in dockerhub](https://hub.docker.com/r/apachekylin/apache-kylin-standalone) .
+
+```shell
+docker pull apachekylin/apache-kylin-standalone:5.0.0
+```
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index 5088ebc12c..a402b743bf 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -6,8 +6,8 @@ const darkCodeTheme =
require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
- title: 'Kylin 5.0 Alpha',
- tagline: 'Kylin 5.0 is a unified and powerful OLAP platform for Hadoop and
Cloud.',
+ title: 'Welcome to Kylin 5',
+ tagline: 'Apache Kylin 5.0 is a unified and powerful OLAP platform for
Hadoop and Cloud.',
url: 'https://kylin.apache.org',
baseUrl: '/5.0/',
onBrokenLinks: 'warn',
@@ -16,7 +16,7 @@ const config = {
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
- organizationName: 'hit-lacus', // Usually your GitHub org/user name.
+ organizationName: 'apache', // Usually your GitHub org/user name.
projectName: 'kylin', // Usually your repo name.
deploymentBranch:'kylin5_doc',
@@ -134,15 +134,15 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
- title: 'Apache Kylin 5.0 Alpha',
+ title: 'Apache Kylin 5.0',
logo: {
alt: 'Kylin Logo',
- src: 'img/kylin_logo.png',
+ src: '../img/kylin_logo.png',
},
items: [
{
type: 'doc',
- docId: 'intro',
+ docId: 'quickstart/intro',
position: 'left',
label: 'Document',
},
@@ -155,7 +155,7 @@ const config = {
{
type: 'doc',
docId: 'download',
- position: 'left',
+ position: 'right',
label: 'Download',
},
{
@@ -164,7 +164,7 @@ const config = {
position: 'left',
label: 'Community',
},
- {to: '/blog', label: 'Blog', position: 'left'},
+ {to: '/blog', label: 'Tech Blog', position: 'left'},
{
href: 'https://github.com/apache/kylin',
label: 'GitHub',
@@ -180,16 +180,24 @@ const config = {
width: 160,
height: 51,
},
- style: 'light',
+ style: 'dark',
links: [
{
title: 'Docs',
items: [
{
- label: 'Tutorial',
- to: '/docs/intro',
+ label: 'Quick Start',
+ to: '/docs/quickstart/quick_start',
},
- ],
+ {
+ label: 'How to write this doc',
+ to: '/docs/development/how_to_write_doc',
+ },
+ {
+ label: 'Roadmap',
+ to: 'docs/development/roadmap',
+ }
+ ]
},
{
title: 'Community',
diff --git a/website/src/components/HomepageFeatures/index.js
b/website/src/components/HomepageFeatures/index.js
index 6cc2778778..3cddc4cafc 100644
--- a/website/src/components/HomepageFeatures/index.js
+++ b/website/src/components/HomepageFeatures/index.js
@@ -3,51 +3,56 @@ import clsx from 'clsx';
import styles from './styles.module.css';
const FeatureList = [
- {
- title: 'Brand New Frontend',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
- description: (
- <>
- Kylin has a brand new frontend now. Everything in Kylin
becomes easier and quicker. Such as building models, query data, load data
sources, checking job status, configuration, etc.
- </>
- ),
- },
+
{
title: 'Unified Data Analytics Platform',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ Svg: require('@site/static/img/main_page_01.svg').default,
description: (
<>
- Support data acquisition from different platforms including
streaming data, databases, data lakes, and clouds, all while providing a
unified interface for downstream applications.
+ Support data analytics from different platform
including Hadoop/Cloud/RDBMS,
+ while providing a unified interface for
downstream applications.
</>
),
},
{
title: 'Native Compute Engine',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ Svg: require('@site/static/img/main_page_02.svg').default,
description: (
<>
- Kylin provides a native compute engine offering sub-second
response times for standard SQL queries on petabyte-scale datasets.
+ Use Native Engine to enable vector acceleration and cpu
instruction level optimization.
+ <br></br> Gluten and Datafusion will be integrated into Kylin.
(This task is working in process.)
</>
),
},
{
title: 'Cloud Native Architecture',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ Svg: require('@site/static/img/main_page_03.svg').default,
description: (
<>
- Support on-premise, public, and private cloud deployments. Use
a separate storage and computing architecture and allow the elastic scaling of
computing resources.
+ Support deployment on K8S and use a separate storage and
+ computing architecture and allow the elastic scaling of
resources.
</>
),
},
{
- title: 'Support MDX',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ title: 'Support BI/Excel',
+ Svg: require('@site/static/img/main_page_04.svg').default,
description: (
<>
- Map complex data into business terms. Run as a service for
every consumer with universal data definitions and industry-standard interfaces
at the petabyte scale.
+ Support connecting to different BI tools, like Tableau/Power
BI/Excel.
</>
),
},
+ {
+ title: 'Brand New Frontend',
+ Svg: require('@site/static/img/main_page_05.svg').default,
+ description: (
+ <>
+ New modeling process are concise by letting
user define table
+ relationship/dimensions/measures in a single
canvas.
+ </>
+ ),
+ },
];
function Feature({Svg, title, description}) {
diff --git a/website/src/components/HomepageFeatures/styles.module.css
b/website/src/components/HomepageFeatures/styles.module.css
index b248eb2e5d..f4fd60a6c2 100644
--- a/website/src/components/HomepageFeatures/styles.module.css
+++ b/website/src/components/HomepageFeatures/styles.module.css
@@ -6,6 +6,6 @@
}
.featureSvg {
- height: 200px;
- width: 200px;
+ height: 150px;
+ width: 150px;
}
diff --git a/website/src/pages/index.js b/website/src/pages/index.js
index ef84ef233a..76efb24865 100644
--- a/website/src/pages/index.js
+++ b/website/src/pages/index.js
@@ -17,8 +17,8 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
- to="/docs/intro">
- Kylin 5.0 Tutorial - 15min ⏱️
+ to="/docs/quickstart/intro">
+ Pull Kylin 5.0 Docker for quick start. ⏱️
</Link>
</div>
</div>
diff --git a/website/static/img/main_page_01.svg
b/website/static/img/main_page_01.svg
new file mode 100644
index 0000000000..e2119d23d6
--- /dev/null
+++ b/website/static/img/main_page_01.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="150px"
height="150px" style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
xmlns:xlink="http://www.w3.org/1999/xlink">
+<g><path style="opacity:1" fill="#fdfdfd" d="M -0.5,-0.5 C 49.5,-0.5 99.5,-0.5
149.5,-0.5C 149.5,49.5 149.5,99.5 149.5,149.5C 99.5,149.5 49.5,149.5
-0.5,149.5C -0.5,99.5 -0.5,49.5 -0.5,-0.5 Z"/></g>
+<g><path style="opacity:1" fill="#666f87" d="M 80.5,14.5 C 72.1554,13.3079
63.8221,13.3079 55.5,14.5C 58.8646,12.9608 62.5313,12.2942 66.5,12.5C
71.4122,12.421 76.0789,13.0877 80.5,14.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 80.5,14.5 C 104.071,20.4044
119.071,35.0711 125.5,58.5C 126.32,64.7974 126.653,71.1308 126.5,77.5C
124.897,89.3162 120.564,99.9828 113.5,109.5C 119.119,116.953 125.619,123.62
133,129.5C 133.749,130.635 133.583,131.635 132.5,132.5C 130.887,134.123
129.22,135.29 127.5,136C 120.924,128.919 113.924,122.419 106.5,116.5C
99.6582,121.254 92.3248,124.921 84.5,127.5C 72.724,130.434 61.0573,130.101
49.5,126.5C 36.2823,122.457 26.1156,114.457 19,102.5C [...]
+<g><path style="opacity:1" fill="#6c758c" d="M 54.5,14.5 C 52.4855,15.9238
50.1522,16.5905 47.5,16.5C 49.5145,15.0762 51.8478,14.4095 54.5,14.5 Z"/></g>
+<g><path style="opacity:1" fill="#727b91" d="M 47.5,16.5 C 45.9674,18.2451
43.9674,19.2451 41.5,19.5C 43.0326,17.7549 45.0326,16.7549 47.5,16.5 Z"/></g>
+<g><path style="opacity:1" fill="#636c85" d="M 88.5,25.5 C 78.1334,21.6636
67.4667,20.6636 56.5,22.5C 66.0449,19.8878 75.7116,20.0545 85.5,23C
86.9423,23.3768 87.9423,24.2101 88.5,25.5 Z"/></g>
+<g><path style="opacity:1" fill="#fcfcfd" d="M 88.5,25.5 C 112.947,37.7322
122.447,57.3988 117,84.5C 107.086,111.209 87.9189,123.375 59.5,121C
33.2744,114.107 19.6077,97.1068 18.5,70C 19.852,45.1451 32.5186,29.3118
56.5,22.5C 67.4667,20.6636 78.1334,21.6636 88.5,25.5 Z"/></g>
+<g><path style="opacity:1" fill="#59637d" d="M 52.5,50.5 C 52.5,64.1667
52.5,77.8333 52.5,91.5C 54.8333,91.5 57.1667,91.5 59.5,91.5C 59.5,77.8333
59.5,64.1667 59.5,50.5C 60.4958,64.3234 60.8291,78.3234 60.5,92.5C 57.5,92.5
54.5,92.5 51.5,92.5C 51.1709,78.3234 51.5042,64.3234 52.5,50.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 52.5,50.5 C 54.8333,50.5
57.1667,50.5 59.5,50.5C 59.5,64.1667 59.5,77.8333 59.5,91.5C 57.1667,91.5
54.8333,91.5 52.5,91.5C 52.5,77.8333 52.5,64.1667 52.5,50.5 Z"/></g>
+<g><path style="opacity:1" fill="#737b91" d="M 14.5,48.5 C 13.7444,52.767
12.411,56.767 10.5,60.5C 10.8606,56.0845 12.1939,52.0845 14.5,48.5 Z"/></g>
+<g><path style="opacity:1" fill="#6d778d" d="M 76.5,58.5 C 79.5,58.5 82.5,58.5
85.5,58.5C 85.5,69.8333 85.5,81.1667 85.5,92.5C 82.5,92.5 79.5,92.5 76.5,92.5C
76.5,81.1667 76.5,69.8333 76.5,58.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 77.5,59.5 C 79.8333,59.5
82.1667,59.5 84.5,59.5C 84.5,70.1667 84.5,80.8333 84.5,91.5C 82.1667,91.5
79.8333,91.5 77.5,91.5C 77.5,80.8333 77.5,70.1667 77.5,59.5 Z"/></g>
+<g><path style="opacity:1" fill="#9ca2b2" d="M 47.5,68.5 C 44.8333,68.5
42.1667,68.5 39.5,68.5C 39.5,76.5 39.5,84.5 39.5,92.5C 38.5073,84.3501
38.1739,76.0168 38.5,67.5C 41.7131,67.19 44.7131,67.5233 47.5,68.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 47.5,68.5 C 47.5,76.5 47.5,84.5
47.5,92.5C 44.8333,92.5 42.1667,92.5 39.5,92.5C 39.5,84.5 39.5,76.5 39.5,68.5C
42.1667,68.5 44.8333,68.5 47.5,68.5 Z"/></g>
+<g><path style="opacity:1" fill="#acb1be" d="M 72.5,68.5 C 69.8333,68.5
67.1667,68.5 64.5,68.5C 64.5,76.5 64.5,84.5 64.5,92.5C 63.5073,84.3501
63.1739,76.0168 63.5,67.5C 66.7131,67.19 69.7131,67.5233 72.5,68.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 72.5,68.5 C 72.5,76.5 72.5,84.5
72.5,92.5C 69.8333,92.5 67.1667,92.5 64.5,92.5C 64.5,84.5 64.5,76.5 64.5,68.5C
67.1667,68.5 69.8333,68.5 72.5,68.5 Z"/></g>
+<g><path style="opacity:1" fill="#a8adba" d="M 125.5,58.5 C 127.039,61.8646
127.706,65.5313 127.5,69.5C 127.497,72.3555 127.164,75.0221 126.5,77.5C
126.653,71.1308 126.32,64.7974 125.5,58.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 89.5,76.5 C 92.1667,76.5
94.8333,76.5 97.5,76.5C 97.5,81.8333 97.5,87.1667 97.5,92.5C 94.8333,92.5
92.1667,92.5 89.5,92.5C 89.5,87.1667 89.5,81.8333 89.5,76.5 Z"/></g>
+<g><path style="opacity:1" fill="#abb0bd" d="M 49.5,126.5 C 61.0573,130.101
72.724,130.434 84.5,127.5C 74.4442,130.772 64.1109,131.272 53.5,129C
51.6803,128.8 50.347,127.966 49.5,126.5 Z"/></g>
+</svg>
diff --git a/website/static/img/main_page_02.svg
b/website/static/img/main_page_02.svg
new file mode 100644
index 0000000000..5bb628974e
--- /dev/null
+++ b/website/static/img/main_page_02.svg
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="154px"
height="154px" style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
xmlns:xlink="http://www.w3.org/1999/xlink">
+<g><path style="opacity:1" fill="#fdfdfd" d="M -0.5,-0.5 C 50.8333,-0.5
102.167,-0.5 153.5,-0.5C 153.5,50.8333 153.5,102.167 153.5,153.5C 102.167,153.5
50.8333,153.5 -0.5,153.5C -0.5,102.167 -0.5,50.8333 -0.5,-0.5 Z"/></g>
+<g><path style="opacity:1" fill="#6a738a" d="M 82.5,16.5 C 75.8198,16.6123
69.1531,16.9457 62.5,17.5C 66.2227,16.0033 70.2227,15.3367 74.5,15.5C
77.3555,15.5025 80.0221,15.8359 82.5,16.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 82.5,16.5 C 88.5152,17.6456
94.5152,19.3123 100.5,21.5C 101.107,21.3764 101.44,21.0431 101.5,20.5C
102.434,19.4324 102.768,18.099 102.5,16.5C 104.833,16.5 107.167,16.5
109.5,16.5C 109.5,23.1667 109.5,29.8333 109.5,36.5C 102.833,36.5 96.1667,36.5
89.5,36.5C 89.5,33.8333 89.5,31.1667 89.5,28.5C 97.322,28.5869 97.322,27.7536
89.5,26C 60.8642,20.5656 40.6976,31.0656 29,57.5C 28.023,59.74 27.523,62.0733
27.5,64.5C 26.3475,70.3188 26.1808,76.3188 [...]
+<g><path style="opacity:1" fill="#646d85" d="M 109.5,36.5 C 109.5,29.8333
109.5,23.1667 109.5,16.5C 107.167,16.5 104.833,16.5 102.5,16.5C 102.768,18.099
102.434,19.4324 101.5,20.5C 101.5,18.8333 101.5,17.1667 101.5,15.5C 104.5,15.5
107.5,15.5 110.5,15.5C 110.825,22.6866 110.491,29.6866 109.5,36.5 Z"/></g>
+<g><path style="opacity:1" fill="#6d768d" d="M 82.5,16.5 C 89.1305,16.5591
95.4638,17.8925 101.5,20.5C 101.44,21.0431 101.107,21.3764 100.5,21.5C
94.5152,19.3123 88.5152,17.6456 82.5,16.5 Z"/></g>
+<g><path style="opacity:1" fill="#505a75" d="M 62.5,17.5 C 58.5407,19.9734
54.2074,21.6401 49.5,22.5C 53.3947,19.8655 57.728,18.1988 62.5,17.5 Z"/></g>
+<g><path style="opacity:1" fill="#949bac" d="M 91.5,45.5 C 81.1148,45.2145
70.7815,45.5478 60.5,46.5C 60.6107,45.8826 60.944,45.3826 61.5,45C
71.6753,44.1751 81.6753,44.3417 91.5,45.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 91.5,45.5 C 93.1032,46.5964
94.6032,47.9297 96,49.5C 100.121,56.092 103.954,62.7587 107.5,69.5C 107.5,72.5
107.5,75.5 107.5,78.5C 103.441,84.9407 99.6076,91.6074 96,98.5C 94.8333,99.6667
93.6667,100.833 92.5,102C 81.8333,102.667 71.1667,102.667 60.5,102C
53.7354,93.3041 48.402,83.8041 44.5,73.5C 47.625,67.25 50.7916,60.9167 54,54.5C
55.4675,51.2126 57.6341,48.5459 60.5,46.5C 70.7815,45.5478 81.1148,45.2145
91.5,45.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 134.5,80.5 C 133.216,84.9848
132.216,89.6515 131.5,94.5C 125.669,109.33 115.669,120.33 101.5,127.5C
95.2112,129.827 88.8779,131.494 82.5,132.5C 72.0174,133.556 62.0174,131.889
52.5,127.5C 51.5481,129.045 51.2148,130.712 51.5,132.5C 48.8333,132.5
46.1667,132.5 43.5,132.5C 43.5,125.833 43.5,119.167 43.5,112.5C 50.1667,112.5
56.8333,112.5 63.5,112.5C 63.5,114.833 63.5,117.167 63.5,119.5C 61.2646,119.205
59.2646,119.539 57.5,120.5C 85.7466,129.8 [...]
+<g><path style="opacity:1" fill="#f3f4f6" d="M 64.5,53.5 C 72.8599,53.1688
81.1932,53.5021 89.5,54.5C 93.0471,61.097 96.7137,67.597 100.5,74C
96.7137,80.403 93.0471,86.903 89.5,93.5C 81.1667,94.8333 72.8333,94.8333
64.5,93.5C 61.4742,87.4295 57.9742,81.7628 54,76.5C 53.3333,74.8333
53.3333,73.1667 54,71.5C 57.3603,65.333 60.8603,59.333 64.5,53.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 72.5,61.5 C 80.2559,60.4669
85.7559,63.4669 89,70.5C 89.3178,83.5102 83.1512,88.3435 70.5,85C
62.1366,76.406 62.8032,68.5727 72.5,61.5 Z"/></g>
+<g><path style="opacity:1" fill="#f3f4f5" d="M 74.5,70.5 C 80.4877,70.664
81.821,73.164 78.5,78C 72.4034,78.1475 71.0701,75.6475 74.5,70.5 Z"/></g>
+<g><path style="opacity:1" fill="#c2c6d0" d="M 19.5,59.5 C 18.7237,67.4754
18.3903,75.4754 18.5,83.5C 17.8351,80.5185 17.5018,77.3518 17.5,74C
17.3437,68.9104 18.0103,64.0771 19.5,59.5 Z"/></g>
+<g><path style="opacity:1" fill="#ced1d8" d="M 27.5,64.5 C 27.1526,72.9358
27.8193,81.2691 29.5,89.5C 27.9891,87.5242 27.1558,85.1909 27,82.5C
26.1808,76.3188 26.3475,70.3188 27.5,64.5 Z"/></g>
+<g><path style="opacity:1" fill="#656e86" d="M 107.5,69.5 C 110.167,72.5
110.167,75.5 107.5,78.5C 107.5,75.5 107.5,72.5 107.5,69.5 Z"/></g>
+<g><path style="opacity:1" fill="#57627b" d="M 134.5,80.5 C 134.735,85.5459
133.735,90.2126 131.5,94.5C 132.216,89.6515 133.216,84.9848 134.5,80.5 Z"/></g>
+<g><path style="opacity:1" fill="#6a748b" d="M 43.5,112.5 C 50.3134,111.509
57.3134,111.175 64.5,111.5C 64.5,114.5 64.5,117.5 64.5,120.5C 62.1667,120.5
59.8333,120.5 57.5,120.5C 59.2646,119.539 61.2646,119.205 63.5,119.5C
63.5,117.167 63.5,114.833 63.5,112.5C 56.8333,112.5 50.1667,112.5 43.5,112.5
Z"/></g>
+<g><path style="opacity:1" fill="#babec9" d="M 101.5,127.5 C 95.8812,131.365
89.5479,133.031 82.5,132.5C 88.8779,131.494 95.2112,129.827 101.5,127.5 Z"/></g>
+</svg>
diff --git a/website/static/img/main_page_03.svg
b/website/static/img/main_page_03.svg
new file mode 100644
index 0000000000..43dfd3a94f
--- /dev/null
+++ b/website/static/img/main_page_03.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="156px"
height="154px" style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
xmlns:xlink="http://www.w3.org/1999/xlink">
+<g><path style="opacity:1" fill="#fdfdfe" d="M -0.5,-0.5 C 51.5,-0.5
103.5,-0.5 155.5,-0.5C 155.5,50.8333 155.5,102.167 155.5,153.5C 103.5,153.5
51.5,153.5 -0.5,153.5C -0.5,102.167 -0.5,50.8333 -0.5,-0.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 98.5,23.5 C 100.033,25.2451
102.033,26.2451 104.5,26.5C 114.529,31.5973 124.696,36.5973 135,41.5C
135.667,63.8333 135.667,86.1667 135,108.5C 126.034,113.065 117.201,117.731
108.5,122.5C 106.973,122.427 105.973,123.094 105.5,124.5C 96.003,129.414
86.3364,134.081 76.5,138.5C 63.5065,132.67 50.8399,126.337 38.5,119.5C
38.0269,118.094 37.0269,117.427 35.5,117.5C 29.9432,114.554 24.2765,111.888
18.5,109.5C 18.1669,86.4903 18.5003,63.4903 19.5,40. [...]
+<g><path style="opacity:1" fill="#fbfbfb" d="M 108.5,50.5 C 106.033,50.7549
104.033,51.7549 102.5,53.5C 93.9306,57.3682 85.4306,61.3682 77,65.5C
63.146,59.8218 49.646,53.4885 36.5,46.5C 34.8624,45.2954 34.5291,43.9621
35.5,42.5C 48.7497,35.0935 62.4164,28.4268 76.5,22.5C 91.2842,29.3919
105.951,36.5586 120.5,44C 116.278,45.9409 112.278,48.1076 108.5,50.5 Z"/></g>
+<g><path style="opacity:1" fill="#858d9f" d="M 98.5,23.5 C 100.967,23.7549
102.967,24.7549 104.5,26.5C 102.033,26.2451 100.033,25.2451 98.5,23.5 Z"/></g>
+<g><path style="opacity:1" fill="#adb1be" d="M 35.5,42.5 C 34.5291,43.9621
34.8624,45.2954 36.5,46.5C 32.1919,45.3206 31.8585,43.9873 35.5,42.5 Z"/></g>
+<g><path style="opacity:1" fill="#d1d5dc" d="M 28.5,52.5 C 27.1759,69.7355
27.1759,87.0688 28.5,104.5C 27.1685,96.0262 26.5018,87.1929 26.5,78C
26.8333,69.1667 27.1667,60.3333 27.5,51.5C 28.1067,51.6236 28.44,51.9569
28.5,52.5 Z"/></g>
+<g><path style="opacity:1" fill="#939baa" d="M 124.5,51.5 C 125.209,50.596
126.209,50.2627 127.5,50.5C 127.83,68.3412 127.497,86.0079 126.5,103.5C
127.153,85.8011 126.486,68.4678 124.5,51.5 Z"/></g>
+<g><path style="opacity:1" fill="#fdfdfd" d="M 28.5,52.5 C 43.2081,59.1893
57.8747,65.856 72.5,72.5C 72.8329,90.8454 72.4996,109.179 71.5,127.5C
64.2887,124.063 57.2887,120.396 50.5,116.5C 50.0269,115.094 49.0269,114.427
47.5,114.5C 40.9426,111.39 34.6093,108.057 28.5,104.5C 27.1759,87.0688
27.1759,69.7355 28.5,52.5 Z"/></g>
+<g><path style="opacity:1" fill="#757e94" d="M 108.5,50.5 C 106.967,52.2451
104.967,53.2451 102.5,53.5C 104.033,51.7549 106.033,50.7549 108.5,50.5 Z"/></g>
+<g><path style="opacity:1" fill="#fcfdfd" d="M 124.5,51.5 C 126.486,68.4678
127.153,85.8011 126.5,103.5C 115.174,109.496 103.841,115.496 92.5,121.5C
90.9731,121.427 89.9731,122.094 89.5,123.5C 86.9476,124.693 84.4476,126.027
82,127.5C 81.5001,108.836 81.3334,90.1696 81.5,71.5C 94.3923,66.3882
107.059,60.7215 119.5,54.5C 121.027,54.573 122.027,53.9063 122.5,52.5C
123.492,52.6716 124.158,52.3382 124.5,51.5 Z"/></g>
+<g><path style="opacity:1" fill="#9298aa" d="M 122.5,52.5 C 122.027,53.9063
121.027,54.573 119.5,54.5C 119.973,53.0937 120.973,52.427 122.5,52.5 Z"/></g>
+<g><path style="opacity:1" fill="#7d8498" d="M 47.5,114.5 C 49.0269,114.427
50.0269,115.094 50.5,116.5C 48.9731,116.573 47.9731,115.906 47.5,114.5 Z"/></g>
+<g><path style="opacity:1" fill="#838a9f" d="M 35.5,117.5 C 37.0269,117.427
38.0269,118.094 38.5,119.5C 36.9731,119.573 35.9731,118.906 35.5,117.5 Z"/></g>
+<g><path style="opacity:1" fill="#828a9d" d="M 92.5,121.5 C 92.0269,122.906
91.0269,123.573 89.5,123.5C 89.9731,122.094 90.9731,121.427 92.5,121.5 Z"/></g>
+<g><path style="opacity:1" fill="#9399aa" d="M 108.5,122.5 C 108.027,123.906
107.027,124.573 105.5,124.5C 105.973,123.094 106.973,122.427 108.5,122.5
Z"/></g>
+</svg>
diff --git a/website/static/img/main_page_04.svg
b/website/static/img/main_page_04.svg
new file mode 100644
index 0000000000..a86ebb597e
--- /dev/null
+++ b/website/static/img/main_page_04.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="154px"
height="150px" style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
xmlns:xlink="http://www.w3.org/1999/xlink">
+<g><path style="opacity:1" fill="#fefefe" d="M -0.5,-0.5 C 50.8333,-0.5
102.167,-0.5 153.5,-0.5C 153.5,49.5 153.5,99.5 153.5,149.5C 102.167,149.5
50.8333,149.5 -0.5,149.5C -0.5,99.5 -0.5,49.5 -0.5,-0.5 Z"/></g>
+<g><path style="opacity:1" fill="#a9aebc" d="M 129.5,26.5 C 93.4569,26.1797
57.4569,26.513 21.5,27.5C 21.6107,26.8826 21.944,26.3826 22.5,26C
58.3357,25.169 94.0024,25.3357 129.5,26.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 129.5,26.5 C 131.475,27.6464
132.975,29.313 134,31.5C 134.667,55.8333 134.667,80.1667 134,104.5C
133.31,106.35 132.144,107.684 130.5,108.5C 94.137,109.828 57.8036,109.828
21.5,108.5C 19.39,107.547 18.2233,105.881 18,103.5C 17.3333,79.5 17.3333,55.5
18,31.5C 18.66,29.6763 19.8267,28.343 21.5,27.5C 57.4569,26.513 93.4569,26.1797
129.5,26.5 Z"/></g>
+<g><path style="opacity:1" fill="#fcfcfd" d="M 25.5,34.5 C 59.1667,34.5
92.8333,34.5 126.5,34.5C 126.5,56.8333 126.5,79.1667 126.5,101.5C 92.8333,101.5
59.1667,101.5 25.5,101.5C 25.5,79.1667 25.5,56.8333 25.5,34.5 Z"/></g>
+<g><path style="opacity:1" fill="#6d768d" d="M 71.5,42.5 C 74.5,42.5 77.5,42.5
80.5,42.5C 80.5,58.1667 80.5,73.8333 80.5,89.5C 77.5,89.5 74.5,89.5 71.5,89.5C
71.5,73.8333 71.5,58.1667 71.5,42.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 72.5,43.5 C 74.8333,43.5
77.1667,43.5 79.5,43.5C 79.5,58.5 79.5,73.5 79.5,88.5C 77.1667,88.5
74.8333,88.5 72.5,88.5C 72.5,73.5 72.5,58.5 72.5,43.5 Z"/></g>
+<g><path style="opacity:1" fill="#868da1" d="M 51.5,55.5 C 51.5,66.5 51.5,77.5
51.5,88.5C 54.1667,88.5 56.8333,88.5 59.5,88.5C 56.7131,89.4767 53.7131,89.81
50.5,89.5C 50.1719,77.9877 50.5052,66.6544 51.5,55.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 51.5,55.5 C 54.1667,55.5
56.8333,55.5 59.5,55.5C 59.5,66.5 59.5,77.5 59.5,88.5C 56.8333,88.5
54.1667,88.5 51.5,88.5C 51.5,77.5 51.5,66.5 51.5,55.5 Z"/></g>
+<g><path style="opacity:1" fill="#57627c" d="M 100.5,63.5 C 100.5,63.8333
100.5,64.1667 100.5,64.5C 98.1667,64.5 95.8333,64.5 93.5,64.5C 93.5,72.5
93.5,80.5 93.5,88.5C 93.1667,88.5 92.8333,88.5 92.5,88.5C 92.5,80.1667
92.5,71.8333 92.5,63.5C 95.1667,63.5 97.8333,63.5 100.5,63.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 100.5,64.5 C 100.5,72.5
100.5,80.5 100.5,88.5C 98.1667,88.5 95.8333,88.5 93.5,88.5C 93.5,80.5 93.5,72.5
93.5,64.5C 95.8333,64.5 98.1667,64.5 100.5,64.5 Z"/></g>
+<g><path style="opacity:1" fill="#80889c" d="M 100.5,63.5 C 101.493,71.9839
101.826,80.6506 101.5,89.5C 98.2869,89.81 95.2869,89.4767 92.5,88.5C
92.8333,88.5 93.1667,88.5 93.5,88.5C 95.8333,88.5 98.1667,88.5 100.5,88.5C
100.5,80.5 100.5,72.5 100.5,64.5C 100.5,64.1667 100.5,63.8333 100.5,63.5
Z"/></g>
+<g><path style="opacity:1" fill="#c1c5cf" d="M 21.5,108.5 C 57.8036,109.828
94.137,109.828 130.5,108.5C 112.679,109.833 94.5125,110.5 76,110.5C
57.4875,110.5 39.3208,109.833 21.5,108.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 46.5,118.5 C 66.1667,118.5
85.8333,118.5 105.5,118.5C 105.5,121.167 105.5,123.833 105.5,126.5C
85.8333,126.5 66.1667,126.5 46.5,126.5C 46.5,123.833 46.5,121.167 46.5,118.5
Z"/></g>
+</svg>
diff --git a/website/static/img/main_page_05.svg
b/website/static/img/main_page_05.svg
new file mode 100644
index 0000000000..0a6463de0f
--- /dev/null
+++ b/website/static/img/main_page_05.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="154px"
height="152px" style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
xmlns:xlink="http://www.w3.org/1999/xlink">
+<g><path style="opacity:1" fill="#fefefe" d="M -0.5,-0.5 C 50.8333,-0.5
102.167,-0.5 153.5,-0.5C 153.5,50.1667 153.5,100.833 153.5,151.5C 102.167,151.5
50.8333,151.5 -0.5,151.5C -0.5,100.833 -0.5,50.1667 -0.5,-0.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 45.5,21.5 C 45.7394,23.4672
45.4061,25.3005 44.5,27C 40.1667,27.3333 35.8333,27.6667 31.5,28C
30.944,28.3826 30.6107,28.8826 30.5,29.5C 29.7275,33.7496 29.2275,38.0829
29,42.5C 26.506,45.0858 24.006,45.0858 21.5,42.5C 20.9603,35.5911
21.6269,28.9245 23.5,22.5C 24.0577,21.2101 25.0577,20.3768 26.5,20C
32.1667,19.3333 37.8333,19.3333 43.5,20C 44.0442,20.7172 44.7109,21.2172
45.5,21.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 134.5,21.5 C 134.685,23.1958
135.519,24.5291 137,25.5C 137.499,31.1569 137.666,36.8236 137.5,42.5C
135.121,45.1402 132.621,45.1402 130,42.5C 129.667,38.5 129.333,34.5 129,30.5C
128.5,30 128,29.5 127.5,29C 123.5,28.6667 119.5,28.3333 115.5,28C
112.966,25.2533 112.966,22.5867 115.5,20C 121.167,19.3333 126.833,19.3333
132.5,20C 133.044,20.7172 133.711,21.2172 134.5,21.5 Z"/></g>
+<g><path style="opacity:1" fill="#a3a9b7" d="M 23.5,22.5 C 21.6269,28.9245
20.9603,35.5911 21.5,42.5C 20.3475,36.6812 20.1808,30.6812 21,24.5C
21.7083,23.6195 22.5416,22.9528 23.5,22.5 Z"/></g>
+<g><path style="opacity:1" fill="#a0a5b4" d="M 45.5,21.5 C 46.8112,23.5598
46.8112,25.7265 45.5,28C 40.4512,28.2724 35.4512,28.7724 30.5,29.5C
30.6107,28.8826 30.944,28.3826 31.5,28C 35.8333,27.6667 40.1667,27.3333
44.5,27C 45.4061,25.3005 45.7394,23.4672 45.5,21.5 Z"/></g>
+<g><path style="opacity:1" fill="#5c6680" d="M 134.5,21.5 C 135.794,22.2899
136.961,23.2899 138,24.5C 138.819,30.6812 138.653,36.6812 137.5,42.5C
137.666,36.8236 137.499,31.1569 137,25.5C 135.519,24.5291 134.685,23.1958
134.5,21.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 75.5,45.5 C 78.1667,45.5
80.8333,45.5 83.5,45.5C 83.5,67.5 83.5,89.5 83.5,111.5C 80.8333,111.5
78.1667,111.5 75.5,111.5C 75.5,89.5 75.5,67.5 75.5,45.5 Z"/></g>
+<g><path style="opacity:1" fill="#a6acba" d="M 75.5,45.5 C 78.2869,44.5233
81.2869,44.19 84.5,44.5C 84.8308,67.0062 84.4974,89.3396 83.5,111.5C 83.5,89.5
83.5,67.5 83.5,45.5C 80.8333,45.5 78.1667,45.5 75.5,45.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 104.5,53.5 C 107.5,53.5
110.5,53.5 113.5,53.5C 113.5,72.8333 113.5,92.1667 113.5,111.5C 110.5,111.5
107.5,111.5 104.5,111.5C 104.5,92.1667 104.5,72.8333 104.5,53.5 Z"/></g>
+<g><path style="opacity:1" fill="#b3b7c4" d="M 54.5,70.5 C 51.8333,70.5
49.1667,70.5 46.5,70.5C 46.5,84.1667 46.5,97.8333 46.5,111.5C 45.5042,97.6766
45.1709,83.6766 45.5,69.5C 48.7131,69.19 51.7131,69.5233 54.5,70.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 54.5,70.5 C 54.5,84.1667
54.5,97.8333 54.5,111.5C 51.8333,111.5 49.1667,111.5 46.5,111.5C 46.5,97.8333
46.5,84.1667 46.5,70.5C 49.1667,70.5 51.8333,70.5 54.5,70.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 23.5,111.5 C 25.7224,111.178
27.5557,111.845 29,113.5C 29.3333,117.833 29.6667,122.167 30,126.5C 30.5,127
31,127.5 31.5,128C 36.2824,128.119 40.9491,128.785 45.5,130C 46.9348,132.267
46.6015,134.267 44.5,136C 38.5,136.667 32.5,136.667 26.5,136C 25.0692,135.535
23.9025,134.701 23,133.5C 20.8515,125.984 21.0182,118.651 23.5,111.5 Z"/></g>
+<g><path style="opacity:1" fill="#ff9900" d="M 133.5,135.5 C 127.559,136.413
121.559,136.746 115.5,136.5C 112.914,133.994 112.914,131.494 115.5,129C
119.5,128.667 123.5,128.333 127.5,128C 128.044,127.283 128.711,126.783
129.5,126.5C 130.273,121.971 130.94,117.305 131.5,112.5C 133.605,111.181
135.605,111.514 137.5,113.5C 138.664,119.472 138.83,125.472 138,131.5C
136.629,133.041 135.129,134.375 133.5,135.5 Z"/></g>
+<g><path style="opacity:1" fill="#6e778e" d="M 131.5,112.5 C 130.94,117.305
130.273,121.971 129.5,126.5C 129.334,122.154 129.501,117.821 130,113.5C
130.383,112.944 130.883,112.611 131.5,112.5 Z"/></g>
+<g><path style="opacity:1" fill="#a7adbb" d="M 133.5,135.5 C 133.389,136.117
133.056,136.617 132.5,137C 126.651,137.818 120.985,137.652 115.5,136.5C
121.559,136.746 127.559,136.413 133.5,135.5 Z"/></g>
+</svg>