import * as React from 'react'; import { Button } from 'antd'; import { Link } from 'bisheng/router'; import { FormattedMessage, useIntl } from 'react-intl'; import Background from './Background'; import { getLocalizedPathname } from '../../utils'; import Logo from './Logo'; import './index.less'; const Banner = (props: { location: any }) => { const { location } = props; const { locale } = useIntl(); const isZhCN = locale === 'zh-CN'; return (