import { Box, Image, BoxProps, Grid, useTheme } from '@chakra-ui/react'; import React from 'react'; import { useTranslation } from 'next-i18next'; const Ability = () => { const theme = useTheme(); const { t } = useTranslation(); const CardStyles: BoxProps = { pt: 4, borderRadius: 'xl', overflow: 'hidden', border: theme.borders.base }; const TitleStyles: BoxProps = { px: 4, fontSize: ['xl', '30px'], fontWeight: 'bold' }; const DescStyles: BoxProps = { px: 4, mt: 2, mb: 5, fontSize: ['sm', 'lg'], whiteSpace: 'pre-wrap' }; return ( {t('home.FastGPT Ability')} {t('home.AI Assistant')} {t('home.AI Assistant Desc')} {''} {t('home.Dateset')} {t('home.Dateset Desc')} {''} {t('home.Advanced Settings')} {t('home.Advanced Settings Desc')} {''} {t('home.OpenAPI')} {t('home.OpenAPI Desc')} {''} ); }; export default Ability;