import React from 'react'; import Styles from "./Home.module.css"; import videoSource from "../../assets/videos/FreeGo-web.mp4" import img1 from '../../assets/images/home/img1.png'; import img2 from '../../assets/images/home/img2.png'; import img3 from '../../assets/images/home/img3.png'; import code from '../../assets/images/home/code.png'; import {useTranslation} from "react-i18next"; // 首页内容组件 const Home = () => { const {t} = useTranslation(); return (

{t('homeTip1-1')}

{t('homeTip1-2')}

{t('homeTip1-3')}

{t('homeTip1-4')}

{t('homeTip2-1')}

{t('homeTip2-2')}

{t('homeTip2-3')}

{t('homeTip2-4')}

{t('homeTip3-1')}

{t('homeTip3-2')}

{t('homeTip3-3')}

{t('homeTip3-4')}

{t('bottomTitle')}

{t('bottomSubtitle1')}

{t('bottomSubtitle2')}

{t('scanCode')}

) }; export default Home;