import React from 'react'; import clsx from 'clsx'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faStar } from '@fortawesome/free-solid-svg-icons'; import styles from './HomepageFeatures.module.css'; const FeatureList = [ { size: 4, title: 'Open source', description: ( <> Everything that make up the bot can be found on{' '} Github . You can even clone and host it yourself! ), }, { size: 6, title: '102% Free', description: ( <> Llama bot is not just free as in free ice cream, but also free as in freedom. Every part of the bot is licensed under the{' '} MIT License {' '} so you are free to do whatever your hart desires! ), }, { size: 4, title: 'Easy to use', description: ( <> ✔️ Simple
✔️ Modern
✔️ Extendable
✔️ Well documented ), }, ]; function Feature({ size, title, description }) { return (

{title}

{description}

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