import { CheckIcon } from '@chakra-ui/icons' import { Box, Container, Heading, HStack, Icon, SimpleGrid, Stack, Text, VStack, } from '@chakra-ui/react' import React from 'react' import { featuresContent } from './featuresContent' const FeaturesSection = () => { return ( Features The ultimate solution for your messaging needs! Our free open-source Android-based SMS Gateway provides you with all the features you need to effectively manage your SMS communications. From sending messages and automating messaging workflows via API, our SMS Gateway is the perfect tool for any small/mid business or individual. {featuresContent.map((feature, i) => ( {feature.title} {feature.description} ))} ) } export default FeaturesSection