Files
doc/src/components/Amlogic/index.js
2023-10-10 23:40:47 +08:00

66 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
import clsx from 'clsx';
import styles from './styles.module.css';
const FeatureList = [
{
title: '海纳思系统专业版',
Svg: require('@site/static/img/cpu-ecoo.svg').default,
description: (
<>
包含wifi功能打印功能内网穿透的专业版<br />
详情
</>
),
},
{
title: '海纳思宝塔专用版',
Svg: require('@site/static/img/cpu-baota.svg').default,
description: (
<>
内置宝塔程序,预编译并内置全家桶 LNMP 套件<br />
详情
</>
),
},
{
title: '海纳思网心云专用版',
Svg: require('@site/static/img/cpu-hinas.svg').default,
description: (
<>
可以赚点小钱钱的系统优化后运行容器魔方镜像<br />
详情
</>
),
},
];
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>
);
}