import { AddIcon, MinusIcon } from '@chakra-ui/icons' import { Accordion, AccordionButton, AccordionItem, AccordionPanel, Box, Container, Heading, Text, } from '@chakra-ui/react' import React from 'react' import { howItWorksContent } from './howItWorksContent' export default function HowItWorksSection() { return ( {/* @ts-ignore */} How It Works How it works is simple. You install the app on your Android device, and it will turn your device into a SMS Gateway. You can then use the API to send SMS messages from your own applications. {howItWorksContent.map(({ title, description }) => ( {({ isExpanded }) => ( <>

{title} {isExpanded ? ( ) : ( )}

{description} )}
))}
) }