Skip to content

Commit 970e6f5

Browse files
authored
Merge branch 'master' into feature/V1.0.0
2 parents c40bd1c + c1681bb commit 970e6f5

File tree

5 files changed

+8
-16
lines changed

5 files changed

+8
-16
lines changed

components/footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Footer: FC<IFooterProps> = ({}) => {
6161
},
6262
{
6363
"label": "Docs",
64-
"link": "https://docs.iotsharp.net/",
64+
"link": "https://docs.iotsharp.io/",
6565
},
6666
]
6767
}

pages/components/banner/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ const Banner: FC<IBannerProps> = ({}) => {
2222
<Col xs={24} sm={24} md={24} lg={8} xl={8}>
2323
<div className={styles.container}>
2424
<div className={styles.title}>连接物理设备与数字世界</div>
25-
<div className={styles.description}>IoTSharp 是一个开源的物联网基础平台,集设备属性数据管理、遥测数据监测、RPC多模式远程控制、规则链设计引擎等强大能力,依据数字孪生概念将可见与不可见的物理设备统一孪生到数字世界,在落地上IoTSharp结合了资产管理、产品化发展的理念,让平台应用更加贴合复杂的应用场景,在协议支持上支持HTTP、MQTT 、CoAp 等多种标准物联网协议接入和非标协议的转换。</div>
25+
<div className={styles.description}>IoTSharp 是一个开源的物联网基础平台,通过属性、遥测、RPC、规则链按照数字孪生概念将可见与不可见的物理设备投射到了数字世界,透过资产、产品的概念贴合应用和生产,协议支持 HTTP、MQTT 、CoAp 以及常见物联网协议的转换,支持常用关系型和时序数据库。在生态和周边,我们支持了国产时序数据库TDengine、确保了能在龙芯Linux运行、对接了国产实时操作系统RT-Thread以及常用标准协议。 </div>
2626
<div className={styles.button} onClick={(): void => {
2727
window.open(
28-
"https://docs.iotsharp.net/",
28+
"https://docs.iotsharp.io/",
2929
"blank",
3030
"noopener=yes,noreferrer=yes"
3131
);

pages/components/contributors/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ const Contributors: FC<IContributorsProps> = ({}) => {
7575
</Col>
7676
)
7777
})
78-
}
7978
</Row>
8079
</div>
8180
</div>

pages/components/contributors/styles.module.scss

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
flex-direction: column;
66
width: 100%;
77
padding: 10rem 8rem;
8-
98
.imageBox {
109
width: 100%;
1110
margin-top: 3rem;
@@ -18,7 +17,6 @@
1817
text-align: center;
1918
vertical-align: middle;
2019
}
21-
2220
.subTitle {
2321
font-size: 1.125rem;
2422
text-align: left;
@@ -33,28 +31,23 @@
3331
height: 25rem;
3432
border-radius: 8px;
3533
}
36-
3734
:global {
3835
.semi-descriptions {
3936
display: flex;
4037
width: 100%;
4138
align-items: center;
4239
padding: 0 -20px;
4340
}
44-
4541
.semi-row {
4642
margin-top: 3rem;
4743
}
48-
4944
.semi-descriptions table {
5045
width: 100%;
5146
}
52-
5347
.semi-descriptions-double tbody {
5448
width: 100%;
5549
justify-content: space-between;
5650
}
57-
5851
.semi-descriptions-value {
5952
color: rgb(var(--semi-purple-5));
6053
}

pages/components/technology/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ export interface ITechnologyProps {
88

99
const Technology: FC<ITechnologyProps> = ({}) => {
1010
const Options = [{
11-
title: '数字孪生',
12-
description: '通过服务侧、客户端侧属性、遥测数据、RPC 等实现了数字孪生, 实现了所有设备统一接口提供给业务调用。',
11+
title: '预测未来',
12+
description: '利用ML.Net使用遥测数据训练时间序列预测模型让你对态势快人一步。',
1313
classGroup: [styles.item, styles.item3]
1414
}, {
1515
title: '规则链引擎',
16-
description: '通过脚本处理数据并结合动态 Linq 表达式处理节点与节点之间的走向以实现数据清洗、告警、事件等相应手段。',
16+
description: '通过脚本处理数据并结合动态表达式处理节点与节点之间的走向以实现数据清洗、告警。',
1717
classGroup: [styles.item, styles.item2]
1818
}, {
19-
title: '中间件支持',
20-
description: '支持如消息中间件 RabbitMQ、AmazonSQS,时序数据库 InfluxDB、TDengine,关系数据库 PostgreSQL等。',
19+
title: '自主可控',
20+
description: '针对国产CPU龙芯进行了完整的适配。为国产时序数据库TDengine做了最有力的生态支持。',
2121
classGroup: [styles.item, styles.item1]
2222
}]
2323
return (

0 commit comments

Comments
 (0)