import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; const FeatureList = [ { title: 'Easy to configure', // Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: ( <> Controls deployment with simple TOML config ), }, { title: 'Open source', // Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> Audit the entire Tabby codebase for security or compliance on Github. Or host your own deployment. ), }, { title: 'Powered by Rust', // Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <> Brings the best-in-class speed and safety of Rust, to make your coding experience as quick and reliable as possible. ), }, ]; function Feature({Svg, title, description}) { return (
{false && }

{title}

{description}

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