blob: 3ac62fec2a9b375785606788e8e5d56a332c385e [file] [log] [blame]
import React from 'react';
import clsx from 'clsx';
import styles from './styles.module.css';
type FeatureItem = {
title: string;
description: JSX.Element;
};
const FeatureList: FeatureItem[] = [
{
title: 'What is Apache Uniffle(Incubating)',
description: (
<>
Apache Uniffle(Incubating) is a Remote Shuffle Service, and provides the capability for Apache Spark applications to store shuffle data on remote servers.
</>
),
},
{
title: 'Supported Version',
description: (
<>
Current support Spark 2.3.x, Spark 2.4.x, Spark3.0.x, Spark 3.1.x, Spark 3.2.x, and support Hadoop 2.8.5's MapReduce framework.
</>
),
},
{
title: 'Support',
description: (
<>
We provide free support for users using this project.
</>
),
},
];
function Feature({title, description}: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center padding-horiz--md">
<h3>{title}</h3>
<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>
);
}