This is an automated email from the ASF dual-hosted git repository.
mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh-site.git
The following commit(s) were added to refs/heads/master by this push:
new 8f70255 update website images
8f70255 is described below
commit 8f702552220924edc5c4707e95c88511c222a177
Author: xwm1992 <[email protected]>
AuthorDate: Fri Dec 24 17:06:13 2021 +0800
update website images
---
src/components/Features.tsx | 24 +++++++++---------------
static/images/eventmesh-federation.png | Bin 0 -> 67317 bytes
static/images/eventmesh-orchestration.png | Bin 0 -> 272622 bytes
static/images/eventmesh.png | Bin 2041725 -> 289493 bytes
4 files changed, 9 insertions(+), 15 deletions(-)
diff --git a/src/components/Features.tsx b/src/components/Features.tsx
index 61d2998..06986b1 100644
--- a/src/components/Features.tsx
+++ b/src/components/Features.tsx
@@ -1,9 +1,8 @@
import React from 'react';
import clsx from 'clsx';
import styles from './Features.module.css';
-import EcosystemImg from '../../static/images/eventmesh-ecosystem.png';
-import ArchitectureImg from '../../static/images/eventmesh-architecture.png';
-import CloudNativeImg from '../../static/images/eventmesh-cloud-native.png';
+import OrchestrationImg from '../../static/images/eventmesh-orchestration.png';
+import FederationImg from '../../static/images/eventmesh-federation.png';
interface FeatureProps {
title: string,
@@ -13,19 +12,14 @@ interface FeatureProps {
const FeatureList: FeatureProps[] = [
{
- title: 'EventMesh Ecosystem',
- description: 'What is EventMesh',
- image: EcosystemImg,
+ title: 'Orchestration',
+ description: 'EventMesh Orchestration',
+ image: OrchestrationImg,
},
{
- title: 'EventMesh Architecture',
- description: 'EventMesh ability and architecture',
- image: ArchitectureImg,
- },
- {
- title: 'EventMesh Cloud Native',
- description: 'Panels and cloud native deployment',
- image: CloudNativeImg,
+ title: 'Federation',
+ description: 'EventMesh Federation',
+ image: FederationImg,
},
];
@@ -34,7 +28,7 @@ const Feature = ({
description,
image,
}: FeatureProps): JSX.Element => (
- <div className={clsx('col col--4 text--center', styles.feature)}>
+ <div className={clsx('col col--6 text--center', styles.feature)}>
<p className={styles.title}>
{title}
</p>
diff --git a/static/images/eventmesh-federation.png
b/static/images/eventmesh-federation.png
new file mode 100644
index 0000000..832d09f
Binary files /dev/null and b/static/images/eventmesh-federation.png differ
diff --git a/static/images/eventmesh-orchestration.png
b/static/images/eventmesh-orchestration.png
new file mode 100644
index 0000000..ebdab9e
Binary files /dev/null and b/static/images/eventmesh-orchestration.png differ
diff --git a/static/images/eventmesh.png b/static/images/eventmesh.png
index 73593f0..202ec03 100644
Binary files a/static/images/eventmesh.png and b/static/images/eventmesh.png
differ
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]