@@ -5,7 +5,7 @@ import styles from './styles.module.css';
5
5
const FeatureList = [
6
6
{
7
7
title : '秒级部署' ,
8
- Svg : require ( '@site/static/img/undraw_docusaurus_mountain.svg ' ) . default ,
8
+ Img : require ( '@site/static/img/quick_deploy.png ' ) . default ,
9
9
description : (
10
10
< >
11
11
深度结合云原生技术本身能力,实现区块链网络的快速部署以及智能合约的快速构建部署,保证平台稳定、安全、可扩展
@@ -14,7 +14,7 @@ const FeatureList = [
14
14
} ,
15
15
{
16
16
title : '云原生DAO' ,
17
- Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg ' ) . default ,
17
+ Img : require ( '@site/static/img/DAO.png ' ) . default ,
18
18
description : (
19
19
< >
20
20
实现云原生DAO(去中心化自治组织),完成对联盟、网络、合约的治理。支持多种治理策略,完美适配区块链去中心化决策特性
@@ -23,7 +23,7 @@ const FeatureList = [
23
23
} ,
24
24
{
25
25
title : '合约商店' ,
26
- Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg ' ) . default ,
26
+ Img : require ( '@site/static/img/contracts_store.png ' ) . default ,
27
27
description : (
28
28
< >
29
29
提供多种智能合约实现,涵盖数字藏品、数字存证、ERC20、时间锁、访问控制等业务合约以及Safemath、timer、content等库合约
@@ -32,7 +32,7 @@ const FeatureList = [
32
32
} ,
33
33
{
34
34
title : '一键SaaS' ,
35
- Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg ' ) . default ,
35
+ Img : require ( '@site/static/img/quick_saas.png ' ) . default ,
36
36
description : (
37
37
< >
38
38
提供区块链数字存证、数字藏品等多种SaaS服务
@@ -41,7 +41,7 @@ const FeatureList = [
41
41
} ,
42
42
{
43
43
title : '可视化监控' ,
44
- Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg ' ) . default ,
44
+ Img : require ( '@site/static/img/visualize.png ' ) . default ,
45
45
description : (
46
46
< >
47
47
实时监控联盟、网络、合约状态,快速定位问题,提供可视化监控报表。
@@ -50,7 +50,7 @@ const FeatureList = [
50
50
} ,
51
51
{
52
52
title : '工具' ,
53
- Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg ' ) . default ,
53
+ Img : require ( '@site/static/img/tools.png ' ) . default ,
54
54
description : (
55
55
< >
56
56
提供CLI工具,支持平台资源、SaaS服务操作,方便开发和运维人员。
@@ -59,11 +59,16 @@ const FeatureList = [
59
59
} ,
60
60
] ;
61
61
62
- function Feature ( { Svg , title, description} ) {
62
+ function Feature ( { Img , title, description } ) {
63
63
return (
64
64
< div className = { clsx ( 'col col--4' ) } >
65
65
< div className = "text--center" >
66
- < Svg className = { styles . featureSvg } role = "img" />
66
+ < img
67
+ className = { styles . featureImg }
68
+ src = { Img }
69
+ alt = { title }
70
+ style = { { width : '65%' , height : 'auto' } }
71
+ />
67
72
</ div >
68
73
< div className = "text--center padding-horiz--md" >
69
74
< h3 > { title } </ h3 >
0 commit comments