68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
import clsx from 'clsx';
|
||
import Heading from '@theme/Heading';
|
||
import styles from './styles.module.css';
|
||
|
||
type FeatureItem = {
|
||
title: string;
|
||
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
|
||
description: JSX.Element;
|
||
};
|
||
|
||
const FeatureList: FeatureItem[] = [
|
||
{
|
||
title: '易于使用',
|
||
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
|
||
description: (
|
||
<>
|
||
Docusaurus从一开始就被设计为易于安装,并用于让您的网站快速启动和运行。
|
||
</>
|
||
),
|
||
},
|
||
{
|
||
title: '关注重要的事情',
|
||
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
|
||
description: (
|
||
<>
|
||
Docusaurus让您专注于文档创作,其他的杂务我们来做,并将您创作的文档放到 <code>docs</code> 目录中来。
|
||
</>
|
||
),
|
||
},
|
||
{
|
||
title: 'React支持',
|
||
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
|
||
description: (
|
||
<>
|
||
使用React扩展或自定义您的网站布局。Docusaurus可以使用相同 的页眉和页脚进行扩展。
|
||
</>
|
||
),
|
||
},
|
||
];
|
||
|
||
function Feature({title, Svg, description}: FeatureItem) {
|
||
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">
|
||
<Heading as="h3">{title}</Heading>
|
||
<p>{description}</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default function HomepageFeatures(): JSX.Element {
|
||
return (
|
||
<section className={styles.features}>
|
||
<div className="container">
|
||
<div className="row">
|
||
{FeatureList.map((props, idx) => (
|
||
<Feature key={idx} {...props} />
|
||
))}
|
||
</div>
|
||
</div>
|
||
</section>
|
||
);
|
||
}
|