import clsx from 'clsx'; import Heading from '@theme/Heading'; import styles from './styles.module.css'; type FeatureItem = { title: string; Svg: React.ComponentType>; description: JSX.Element; }; const FeatureList: FeatureItem[] = [ { title: 'Part of a Worldwide Grid', Svg: require('@site/static/img/clouds.svg').default, description: ( <> The ThreeFold Grid is available in 60+ countries with thousands of nodes! ), }, { title: 'Get ThreeFold Nodes', Svg: require('@site/static/img/nodes.svg').default, description: ( <> Get ThreeFold nodes to provide compute, storage and network resources to the world. ), }, { title: 'Earn Rewards', Svg: require('@site/static/img/rewards.svg').default, description: ( <> Deploy nodes and contribute to the growth of the ThreeFold Grid to earn rewards! ), }, ]; function Feature({title, Svg, description}: FeatureItem) { return (
{title}

{description}

); } export default function HomepageFeatures(): JSX.Element { return (
{FeatureList.map((props, idx) => ( ))}
); }