import { Box, Button, Container, SimpleGrid, chakra, VStack, } from '@chakra-ui/react' import NextLink from 'next/link' import { FaArrowRight } from 'react-icons/fa' import showcaseJson from 'configs/showcase.json' import { t } from 'utils/i18n' import { ShowcaseItem } from './showcase-item' const websites = showcaseJson.data.slice(0, 8) const ShowcaseSection = () => { return ( {t('homepage.built-with-chakra-section.title')} {t('homepage.built-with-chakra-section.description')} {websites.map(({ name, image, url }) => ( ))} ) } export default ShowcaseSection