update
This commit is contained in:
62
src/components/Amlogic/index.js
Normal file
62
src/components/Amlogic/index.js
Normal file
@@ -0,0 +1,62 @@
|
||||
import React from 'react';
|
||||
import clsx from 'clsx';
|
||||
import styles from './styles.module.css';
|
||||
|
||||
const FeatureList = [
|
||||
{
|
||||
title: '海纳思系统专业版',
|
||||
Svg: require('@site/static/img/cpu11.svg').default,
|
||||
description: (
|
||||
<>
|
||||
海思芯片的机顶盒开发了包含wifi功能,打印功能的专业版。
|
||||
</>
|
||||
),
|
||||
},
|
||||
|
||||
{
|
||||
title: '海纳思宝塔专用版',
|
||||
Svg: require('@site/static/img/cpu12.svg').default,
|
||||
description: (
|
||||
<>
|
||||
内置宝塔程序
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: '海纳思网心云专用版',
|
||||
Svg: require('@site/static/img/cpu13.svg').default,
|
||||
description: (
|
||||
<>
|
||||
一个可以赚点小钱钱的系统
|
||||
</>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
function Feature({Svg, title, description}) {
|
||||
return (
|
||||
<div className={clsx('col col--4')}>
|
||||
<div className="text--center">
|
||||
<Svg className={styles.featureSvg} role="img" />
|
||||
</div>
|
||||
<div className="text--center padding-horiz--md">
|
||||
<h3>{title}</h3>
|
||||
<p>{description}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default function HomepageFeatures() {
|
||||
return (
|
||||
<section className={styles.features}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
{FeatureList.map((props, idx) => (
|
||||
<Feature key={idx} {...props} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
11
src/components/Amlogic/styles.module.css
Normal file
11
src/components/Amlogic/styles.module.css
Normal file
@@ -0,0 +1,11 @@
|
||||
.features {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 2rem 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.featureSvg {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
@@ -4,29 +4,29 @@ import styles from './styles.module.css';
|
||||
|
||||
const FeatureList = [
|
||||
{
|
||||
title: 'Base on Linux Ubuntu 20.04 LTS',
|
||||
title: '海思芯片 Hisilicon 系列',
|
||||
Svg: require('@site/static/img/cpu11.svg').default,
|
||||
description: (
|
||||
<>
|
||||
基于 ubuntu linux 打造一个优秀的 nas 系统。内置丰富的功能,网盘,建站,上传下载,穿透等,不仅能满足你家用小型服务器的要求,还可以通过 ubuntu 丰富的软件仓库安装你需要的软件。
|
||||
目前已开发适配的海思芯片机顶盒,CPU型号为 hi3798mv100,hi3798mv200,hi3798mv300
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Arm v7/v8 4core 1.5Hz CPU',
|
||||
title: '晶晨芯片 Amlogic 系列',
|
||||
Svg: require('@site/static/img/cpu12.svg').default,
|
||||
description: (
|
||||
<>
|
||||
hi3798m系列,高达 1.5hz 的四核 CPU,1-2G运存,8G闪存,轻松应对运行环境需求。hi3798mv200/300型号,支持 arch64 系统,日常只有2-3瓦的功耗,一杯奶茶的钱,养活它一年。
|
||||
已开发适配 S805 玩客云盒子,后续 S905陆续推出。
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Support Docker 20.10',
|
||||
title: 'AMD Intel 系列',
|
||||
Svg: require('@site/static/img/cpu13.svg').default,
|
||||
description: (
|
||||
<>
|
||||
支持 Docker 容器的安装,内置多款一键脚本,目前测试基本完美运行。青龙面板,网心云,智能家居,casaos等各类型 docker 容器都通过多次运行测试。是的,就是这么优秀。
|
||||
即将推出 x86 机型的海纳思系统。
|
||||
</>
|
||||
),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user