import React from 'react'; import useBaseUrl from '@docusaurus/useBaseUrl'; import styles from '../pages/styles.module.css'; import classnames from 'classnames'; const features = [ { title: <>Web Technologies, imageUrl: 'img/undraw_website_setup.svg', description: ( <> With NodeGui, you can build your app with familiar web technologies like CSS and JavaScript. There is even a React based version. ), }, { title: <>Open Source, imageUrl: 'img/undraw_code_review.svg', description: <>NodeGui is an open source project maintained by an active community of contributors., }, { title: <> Cross Platform, imageUrl: 'img/undraw_windows.svg', description: <>Compatible with Mac, Windows, and Linux, NodeGui apps build and run on three platforms., }, ]; export const Features = () => { return (
{features.map(({ imageUrl, title, description }, idx) => (
{imageUrl && (
{title}
)}

{title}

{description}

))}
); };