\n {/* 跳转到 App Store */}\n \n \n \n \n \n\n {/* 跳转到 Google Play */}\n \n \n \n
\n
\n
\n\n \n
\n );\n}\n\nexport default TryItNow;\n","import TryItNow from './TryItNow';\n\nexport default TryItNow;\n","import React, { useState } from 'react';\n\nimport { goThirdPartyLogin } from '$helpers';\nimport Log from '$helpers/log';\nimport LoginModal, { LoginModalType } from '$components/LoginModal';\nimport Tea from '$helpers/tea';\nimport Button from '$mubu-ui/Button';\nimport useTranslate from '$translate';\n\n// import facebookIcon from '$icons/facebook.svg';\nimport './style.less';\n\nfunction SignUpSection() {\n const t = useTranslate();\n const [signUpVisible, setSignUpVisible] = useState(false);\n\n function onSignUpOpen() {\n Log({\n eventAction: 'click',\n eventCategory: 'home_signup',\n eventLabel: 'don‘t have a account?',\n });\n Tea('web_click_down_create_account');\n setSignUpVisible(true);\n }\n\n function onSignUpClose() {\n setSignUpVisible(false);\n }\n\n function onGoogleLoginBtnClick() {\n Log({\n eventAction: 'click',\n eventCategory: 'home_signup',\n eventLabel: 'sign in with google',\n });\n Tea('web_click_down_google');\n goThirdPartyLogin();\n }\n\n // function onFacebookLoginBtnClick() {\n // Log({\n // eventAction: 'click',\n // eventCategory: 'home_signup',\n // eventLabel: 'sign in with foogle',\n // });\n\n // goThirdPartyLogin(LoginMode.FACEBOOK);\n // }\n\n return (\n
\n
{t('TransnoWeb_Home_S4Title')}
\n
{t('TransnoWeb_Home_S4Des')}
\n\n
\n {/* 谷歌登录 */}\n
\n \n
\n\n {/* Facebook 登录 */}\n {/*
\n \n
*/}\n
\n\n
\n {t('TransnoWeb_Home_S4Account')}\n
\n\n {/* 注册弹窗 */}\n \n
\n );\n}\n\nexport default SignUpSection;\n","import SignUpSection from './SignUpSection';\n\nexport default SignUpSection;\n","import React from 'react';\nimport { Helmet } from 'react-helmet';\n\nimport Container from '$components/Container';\nimport Footer from '$components/Footer';\nimport Header from '$components/Header';\nimport BriefIntro from '$containers/Home/components/BriefIntro';\nimport DetailIntro from '$containers/Home/components/DetailIntro';\nimport TryItNow from '$containers/Home/components/TryItNow';\nimport useTranslate from '$translate';\n\nimport SignUpSection from './components/SignUpSection';\n\nimport './style.less';\n\nfunction Home(): React.ReactElement {\n const t = useTranslate();\n return (\n