import React from 'react' import { Flex, Heading, SimpleGrid, Stack, Text, VStack, } from '@chakra-ui/react' import { FeatureCard } from './FeatureCard' import { FolderIcon } from 'assets/icons/FolderIcon' import { AccessibilityIcon } from 'assets/icons/AccessibilityIcon' import { CalculatorIcon } from 'assets/icons/CaluclatorIcon' import { ConditionIcon } from 'assets/icons/ConditionIcon' import { PersonAddIcon } from 'assets/icons/PersonAddIcon' import { ShareIcon } from 'assets/icons/ShareIcon' const features = [ { Icon: AccessibilityIcon, title: 'Hidden fields', content: 'Include data in your form URL to segment your user and use its data directly in your form.', }, { Icon: PersonAddIcon, title: 'Team collaboration', content: 'Invite your teammates to work on your typebots with you', }, { Icon: ConditionIcon, title: 'Link to sub typebots', content: 'Reuse your typebots in different parent bots.', }, { Icon: CalculatorIcon, title: 'Custom code', content: 'Customize everything with your own Javascript & CSS code', }, { Icon: ShareIcon, title: 'Custom domain', content: 'Connect your typebot to the custom URL of your choice', }, { Icon: FolderIcon, title: 'Folder management', content: 'Organize your typebots in specific folders to keep it clean and work with multiple clients', }, ] export const Features = () => { return ( And many more features Typebot makes form building easy and comes with powerful features {features.map((feature, idx) => ( ))} ) }