62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
import clsx from 'clsx'
|
|
import Heading from '@theme/Heading'
|
|
import styles from './styles.module.css'
|
|
|
|
const FeatureList = [
|
|
{
|
|
title: 'Easy to Use',
|
|
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
|
|
description: (
|
|
<>
|
|
Adept is easy to use.
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: 'Comprehensive View',
|
|
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
|
|
description: (
|
|
<>
|
|
Adept helps you focus on the whole thing.
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: 'Effective',
|
|
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
|
|
description: (
|
|
<>
|
|
Adept is effective.
|
|
</>
|
|
),
|
|
},
|
|
]
|
|
|
|
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">
|
|
<Heading as="h3">{title}</Heading>
|
|
<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>
|
|
)
|
|
}
|