/* eslint-disable @typescript-eslint/no-var-requires */ /* eslint-disable react-native/no-raw-text */ import Heading from '@theme/Heading' import clsx from 'clsx' import styles from './styles.module.css' type FeatureItem = { title: string Svg: React.ComponentType> description: JSX.Element } const FeatureList: FeatureItem[] = [ { title: 'Easy to Use', Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: ( <>It's easy to get started, just prepare your starting data and run our scripts. ), }, { title: 'Focus on What Matters', Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> We provide all necessary tools to start you building the app, you can just focus on creating business logic. ), }, { title: 'Powered by React Native and Expo', Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <>We are using the newest tools to achieve the best performance and developer experience. ), }, ] function Feature({ title, Svg, description }: FeatureItem) { return (
{title}

{description}

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