import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; import Link from '@docusaurus/Link'; const FeatureList = [ { title: 'All the Data', Svg: require('@site/static/img/data.svg').default, description: ( <> SheetJS presents a unified interface to every Excel file format as well as Lotus 1-2-3, Numbers, and Quattro Pro. Process all the data! ), denouement: (
File Details
), }, { title: 'All the Tools', Svg: require('@site/static/img/tools.svg').default, description: ( <> SheetJS offers solutions for common data problems. Unlock the power of JavaScript to wrangle data and effortlessly solve problems. ), denouement: (
Complete Example
), }, { title: 'All the Places', Svg: require('@site/static/img/places.svg').default, description: ( <> SheetJS runs everywhere: web browsers, servers, desktop apps, mobile apps, Salesforce and Photoshop plugins, even within Excel! ), denouement: (
Demo Projects
), }, ]; function Feature({Svg, title, description, denouement}) { return (

{title}

{description}

{denouement && (
{denouement}
)}
); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }