import { CheckIcon } from '@chakra-ui/icons'
import {
Box,
Container,
Heading,
HStack,
Icon,
SimpleGrid,
Text,
useColorModeValue,
VStack,
} from '@chakra-ui/react'
import React from 'react'
import { featuresContent } from './featuresContent'
import AnimatedScrollWrapper from '../AnimatedScrollWrapper'
const FeatureCard = ({ feature }) => {
const boxBgColor = useColorModeValue('gray.100', 'gray.800')
return (
{feature.title}
{feature.description}
)
}
export default function 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) => (
))}
)
}