2024-08-24 12:53:09 +00:00
|
|
|
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[] = [
|
|
|
|
{
|
2024-08-24 13:31:05 +00:00
|
|
|
title: 'Part of a Worldwide Grid',
|
|
|
|
Svg: require('@site/static/img/clouds.svg').default,
|
2024-08-24 12:53:09 +00:00
|
|
|
description: (
|
|
|
|
<>
|
2024-08-24 13:31:05 +00:00
|
|
|
The ThreeFold Grid is available in 60+ countries with thousands of nodes!
|
2024-08-24 12:53:09 +00:00
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
2024-08-24 13:31:05 +00:00
|
|
|
title: 'Get ThreeFold Nodes',
|
|
|
|
Svg: require('@site/static/img/nodes.svg').default,
|
2024-08-24 12:53:09 +00:00
|
|
|
description: (
|
|
|
|
<>
|
2024-08-24 13:31:05 +00:00
|
|
|
Get ThreeFold nodes to provide compute, storage and network resources to the world.
|
2024-08-24 12:53:09 +00:00
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
2024-08-24 13:31:05 +00:00
|
|
|
title: 'Earn Rewards',
|
|
|
|
Svg: require('@site/static/img/rewards.svg').default,
|
2024-08-24 12:53:09 +00:00
|
|
|
description: (
|
|
|
|
<>
|
2024-08-24 13:31:05 +00:00
|
|
|
Deploy nodes and contribute to the growth of the ThreeFold Grid to earn rewards!
|
2024-08-24 12:53:09 +00:00
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|