import React from 'react'; import { useTranslation } from 'react-i18next'; import { Button } from 'antd'; import arrowRight from '@/assets/images/index/arrow_right.svg' const GuideCard: React.FC = () => { const { t } = useTranslation(); return (
{ t('index.latestUpdate')}
{ t('index.latestUpdateDesc')}
); }; export default GuideCard;