import clsx from 'clsx'; import Heading from '@theme/Heading'; import styles from './styles.module.css'; import { useColorMode } from '@docusaurus/theme-common' type FeatureItem = { title: string; Svg: React.ComponentType>; description: JSX.Element; }; const FeatureList: FeatureItem[] = [ { scale: 1.0, fill:"currentColor", title: 'Building Web4', Svg: require('@site/static/img/clouds.svg').default, description: ( <> Laying the groundwork for Web4, the next generation of the Internet. ), }, { scale: 1.0, fill:"currentColor", title: 'ThreeFold Grid', Svg: require('@site/static/img/nodes.svg').default, description: ( <> ThreeFold nodes, routers and phones create an end‑to‑end encrypted network. ), }, { scale: 1.0, fill:"currentColor", title: 'Community Rewards', Svg: require('@site/static/img/rewards.svg').default, description: ( <> The ecosystem rewards the community to foster growth and expansion. ), }, ]; function Feature({scale, fill, id, title, Svg, description}: FeatureItem) { return (
{title}

{description}

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