import React from 'react'; import TweenOne from 'rc-tween-one'; import QueueAnim from 'rc-queue-anim'; import ScrollParallax from 'rc-scroll-anim/lib/ScrollParallax'; import { Link } from 'bisheng/router'; import { FormattedMessage, useIntl } from 'react-intl'; import GitHubButton from 'react-github-button'; import { Button } from 'antd'; import BannerImage from './BannerImage'; import * as utils from '../utils'; const loop = { duration: 3000, yoyo: true, repeat: -1, }; const Banner = ({ isMobile }) => { const { locale } = useIntl(); const isZhCN = locale === 'zh-CN'; return ( ); }; export default Banner;