import React from 'react' import clsx from 'clsx' import styles from './styles.module.css' const FeatureList = [ { title: 'Easy to Use', Svg: () => Building a datacenter in OpenDC, description: ( <> OpenDC is designed from the ground up to be easily installed and used via its online interface to get your experiments running quickly. ), }, { title: 'Versatile Models', Svg: () => ( Explore alternative scenarios with OpenDC ), description: ( <> Explore scenarios around emerging datacenter technologies such as cloud computing,{' '} serverless computing, big data, and machine learning. ), }, { title: 'Simplified Analysis', Svg: () => ( Automated plots and visual summaries generated by OpenDC ), description: ( <> Investigate datacenter performance using the automated plots and visual summaries provided out-of-the-box by OpenDC. ), }, ] function Feature({ Svg, title, description }) { return (

{title}

{description}

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